Skip to main content
curl https://xquik.com/api/v1/api-keys \
  -H "Cookie: session=YOUR_SESSION_TOKEN" | jq

Headers

Session cookie from the dashboard. Format: session=YOUR_SESSION_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"
    }
  ]
}
This endpoint requires session cookie authentication (dashboard sign-in). API keys cannot list other API keys.Related: Create API Key · Revoke API Key