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

# List API keys

> One page of your organization's API keys, newest first.

Covers every key in the organization, including ones created by teammates —
`created_by` names whoever created each key. Secrets are never returned here;
a key's secret is shown only once, when it is created.

Use `limit` and `offset` to page through the list.



## OpenAPI

````yaml https://api.staging.glot.com/openapi.json get /v1/api-keys
openapi: 3.1.0
info:
  title: glot-api
  version: 0.1.0
servers: []
security: []
tags:
  - name: rooms
    description: Create translation rooms and let participants join them.
  - name: usage
    description: Minutes and charges over time, for reporting and charts.
  - name: billing
    description: Buy prepaid credit and review the balance behind it.
  - name: api-keys
    description: Create and revoke keys used to authenticate requests.
  - name: supported-languages
    description: Languages available for translation.
  - name: users
    description: The authenticated user's own profile.
paths:
  /v1/api-keys:
    get:
      tags:
        - api-keys
      summary: List API keys
      description: >-
        One page of your organization's API keys, newest first.


        Covers every key in the organization, including ones created by
        teammates —

        `created_by` names whoever created each key. Secrets are never returned
        here;

        a key's secret is shown only once, when it is created.


        Use `limit` and `offset` to page through the list.
      operationId: list_api_keys_v1_api_keys_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PageResponse_ApiKeyResponse_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    PageResponse_ApiKeyResponse_:
      properties:
        items:
          items:
            $ref: '#/components/schemas/ApiKeyResponse'
          type: array
          title: Items
        limit:
          type: integer
          title: Limit
        offset:
          type: integer
          title: Offset
        next_offset:
          anyOf:
            - type: integer
            - type: 'null'
          title: Next Offset
      type: object
      required:
        - items
        - limit
        - offset
        - next_offset
      title: PageResponse[ApiKeyResponse]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ApiKeyResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        key_prefix:
          type: string
          title: Key Prefix
        key_last4:
          type: string
          title: Key Last4
        created_at:
          type: string
          format: date-time
          title: Created At
        last_used_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Used At
        created_by:
          type: string
          title: Created By
      type: object
      required:
        - id
        - name
        - key_prefix
        - key_last4
        - created_at
        - last_used_at
        - created_by
      title: ApiKeyResponse
      description: >-
        An API key, identified by its prefix and last four characters.


        Never contains the secret — that is shown only in the response that
        creates the

        key.
    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

````