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

# Get API key details

> Get details of a specific API key (client secret will be hidden)



## OpenAPI

````yaml /openapi.json get /v1/api-keys/{clientId}
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/{clientId}:
    get:
      tags:
        - API Keys
      summary: Get API key details
      description: Get details of a specific API key (client secret will be hidden)
      operationId: ApiKeyController_getApiKey
      parameters:
        - description: Auth0 client ID
          in: path
          name: clientId
          required: true
          schema:
            example: abc123xyz456
            type: string
      responses:
        '200':
          description: API key details
        '404':
          description: API key not found
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: Enter Auth0 JWT token
      scheme: bearer
      type: http

````