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

# List all API keys

> Deprecated: use GET /v2/api-keys for bounded opaque cursor pagination.



## OpenAPI

````yaml /openapi.json get /v1/api-keys
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Comprehensive payment platform API supporting fiat and crypto payments,
    currency conversion, and compliance management
  title: Zuba Payment Platform API
  version: '1.0'
servers: []
security: []
tags:
  - description: Manage M2M API keys and credentials
    name: API Keys
  - description: Internal ledger accounts and transactions
    name: Ledger
  - description: Handle incoming payments and deposits
    name: Pay-ins
  - description: Manage payouts, beneficiaries, and SEPA transfers
    name: Payouts
  - description: Manage outbound webhook endpoints and deliveries
    name: Webhooks
paths:
  /v1/api-keys:
    get:
      tags:
        - API Keys
      summary: List all API keys
      description: 'Deprecated: use GET /v2/api-keys for bounded opaque cursor pagination.'
      operationId: ApiKeyController_listApiKeys
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ApiKeyListDto'
                type: array
          description: List of API keys
      deprecated: true
      security:
        - bearer: []
components:
  schemas:
    ApiKeyListDto:
      properties:
        clientId:
          description: Auth0 client ID
          example: abc123xyz456
          type: string
        createdAt:
          description: Creation timestamp
          type: string
        description:
          description: Description
          type: string
        isActive:
          description: Whether the key is active
          type: boolean
        lastUsedAt:
          description: >-
            ISO 8601 timestamp of the most recent successful auth with this key.
            Null if the key has never been used.
          example: '2026-04-20T08:00:00.000Z'
          nullable: true
          type: string
        name:
          description: Name of the API key
          example: Production Integration
          type: string
      required:
        - clientId
        - name
        - createdAt
        - isActive
      type: object
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: Enter Auth0 JWT token
      scheme: bearer
      type: http

````