Skip to main content
GET
/
api-keys
List API keys
curl --request GET \
  --url https://xquik.com/api/v1/api-keys

Documentation Index

Fetch the complete documentation index at: https://docs.xquik.com/llms.txt

Use this file to discover all available pages before exploring further.

Free - does not consume credits
curl https://xquik.com/api/v1/api-keys \
  -H "Cookie: session_token=YOUR_SESSION_TOKEN" | jq

Headers

Dashboard session cookie. Format: session_token=YOUR_SESSION_TOKEN.
x-api-key
string
API key for the same account. Use this instead of Cookie for server-to-server management.
Authorization
string
OAuth bearer token for the same account. Format: Bearer YOUR_TOKEN.

Response

keys
array
Array of API key objects.
{
  "keys": [
    {
      "id": "42",
      "name": "Production",
      "prefix": "xq_a1b2",
      "isActive": true,
      "createdAt": "2026-02-24T10:30:00.000Z",
      "lastUsedAt": "2026-02-24T18:45:12.000Z"
    },
    {
      "id": "43",
      "name": "Staging",
      "prefix": "xq_c3d4",
      "isActive": true,
      "createdAt": "2026-02-20T09:00:00.000Z"
    }
  ]
}
Use a dashboard session cookie to inspect keys from the dashboard, or an API key or OAuth bearer token to automate key inventory for the same account.Related: Create API Key · Revoke API Key
Last modified on May 7, 2026