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

# List Api Keys



## OpenAPI

````yaml /openapi.json get /api/auth/api-keys
openapi: 3.1.0
info:
  title: Konduktor
  version: 0.1.0
servers:
  - url: http://localhost:8080
    description: Local instance (default)
security: []
paths:
  /api/auth/api-keys:
    get:
      tags:
        - auth
      summary: List Api Keys
      operationId: list_api_keys_api_auth_api_keys_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ApiKeyResponse'
                type: array
                title: Response List Api Keys Api Auth Api Keys Get
      security:
        - HTTPBearer: []
components:
  schemas:
    ApiKeyResponse:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        created_at:
          type: string
          title: Created At
        last_used_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Used At
      type: object
      required:
        - id
        - name
        - created_at
      title: ApiKeyResponse
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````