> ## Documentation Index
> Fetch the complete documentation index at: https://developer.kyberis.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List API keys



## OpenAPI

````yaml GET /v2/api-keys
openapi: 3.1.0
info:
  description: Deterministic, evidence-backed threat assessment API for machine consumers.
  title: Threat Investigator API v2
  version: 0.1.0
servers: []
security: []
paths:
  /v2/api-keys:
    get:
      tags:
        - API Keys
      summary: List API keys for the authenticated user
      operationId: list_api_keys_v2_api_keys_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIKeyListResponse'
          description: Successful Response
      security:
        - BearerAuth: []
components:
  schemas:
    APIKeyListResponse:
      properties:
        keys:
          items:
            $ref: '#/components/schemas/APIKeySummary'
          title: Keys
          type: array
      required:
        - keys
      title: APIKeyListResponse
      type: object
    APIKeySummary:
      properties:
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
        expires_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Expires At
        key_id:
          title: Key Id
          type: string
        last_used_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Last Used At
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        principal_id:
          title: Principal Id
          type: string
        scopes:
          items:
            type: string
          title: Scopes
          type: array
        user_email:
          anyOf:
            - type: string
            - type: 'null'
          title: User Email
      required:
        - key_id
        - principal_id
      title: APIKeySummary
      type: object
  securitySchemes:
    BearerAuth:
      description: Bearer <access_token>
      scheme: bearer
      type: http

````