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

# Get API Key by ID

> Retrieve a single API key by its ID via the ContactSwing API.

### Authorizations

<ParamField header="Authorization" type="string" required>
  Enter your ContactSwing JWT Bearer token.
</ParamField>

### Path Parameters

<ParamField path="apikey_id" type="string" required>
  Unique API key identifier from ContactSwing dashboard.
</ParamField>

### Response

**200 OK** - API key retrieved successfully

<ResponseField name="ctx_id" type="string">
  Request context ID
</ResponseField>

<ResponseField name="data" type="object">
  API key details including key value, permissions, and metadata.
</ResponseField>

<ResponseField name="message" type="string">
  "Request processed successfully"
</ResponseField>

### Example Request

```bash theme={null}
curl 'https://prod-contactswing-fastapi-962560522883.us-central1.run.app/v2/_apikeys/YOUR_APIKEY_ID' \
  -H 'Authorization: Bearer YOUR_JWT_TOKEN'
```
