> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agents.kolena.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get API Key

> Retrieve details for a specific API key owned by current user

export const limit_0 = 60

<Info>
  **Rate Limit:** This endpoint is limited to **{limit_0.toLocaleString()} requests per minute** per user.
</Info>


## OpenAPI

````yaml openapi.json GET /api/v1/client/api-keys/{key_id}
openapi: 3.1.0
info:
  title: kolena
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/client/api-keys/{key_id}:
    get:
      tags:
        - client
        - api-keys
      summary: Client Get Api Key
      operationId: client_get_api_key_api_v1_client_api_keys__key_id__get
      parameters:
        - name: key_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Key Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiKeyInfo'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    ApiKeyInfo:
      properties:
        id:
          type: string
          title: Id
          description: The ID of this API key.
        name:
          type: string
          title: Name
          description: The name of this API key.
        created_at:
          type: string
          format: date-time
          title: Created At
          description: >-
            When this API key was created, formatted as an ISO 8601 timestamp
            (e.g. `2025-12-31T10:15:45+00:00`)
        expires_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Expires At
          description: >-
            When this API key expires, formatted as an ISO 8601 timestamp (e.g.
            `2025-12-31T10:15:45+00:00`), or null if it never expires.
        created_by:
          type: string
          title: Created By
          description: The email address of the user who created this API key.
        status:
          $ref: '#/components/schemas/ApiKeyStatus'
          description: The current status of this API key (active or expired).
        api_key_hint:
          type: string
          title: Api Key Hint
          description: Partial API key hint
      type: object
      required:
        - id
        - name
        - created_at
        - expires_at
        - created_by
        - status
        - api_key_hint
      title: ApiKeyInfo
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ApiKeyStatus:
      type: string
      enum:
        - active
        - expired
      title: ApiKeyStatus
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer
      description: >-
        Bearer authentication header of the form `Bearer <token>`. The `<token>`
        represents your API key, which must be acquired from the Kolena
        platform.

````