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

# List My API Keys

> List all API keys belonging to the calling key's owner

Returns every API key owned by the same user as the calling key, plus which key is currently set as the Telegram bot default.

## Response

<ResponseField name="data" type="object">
  * `apiKeys` (array) — each with `id`, `name`, `key`, `createdAt`, newest first
  * `telegramDefaultApiKeyId` (string | null) — the key currently used by the
    Telegram bot, set via [Set Telegram Default
    Key](/rest-api-reference/set-telegram-default-key)
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X GET https://scrape.st/users/me/api-keys \
    -H "x-api-key: YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "data": {
      "apiKeys": [
        {
          "id": "clx0abc...",
          "name": "production",
          "key": "sk_live_...",
          "createdAt": "2026-05-01T12:00:00.000Z"
        }
      ],
      "telegramDefaultApiKeyId": "clx0abc..."
    },
    "message": "API keys retrieved"
  }
  ```
</ResponseExample>
