The Only API docs
API Keys

List API keys

List all API keys for the panel (active + revoked), each with this-month request count and a 30-day series. Full key bodies are never returned — only a prefix.

GET
/api-keys

List all API keys for the panel (active + revoked), each with this-month request count and a 30-day series. Full key bodies are never returned — only a prefix.

Guide: Get an API key

X-API-Key<token>

Your CRM panel API key

In: header

Response Body

application/json

curl -X GET "https://example.com/api-keys"
{  "success": true,  "keys": [    {      "id": 0,      "name": "string",      "prefix": "string",      "is_primary": true,      "created_at": "string",      "last_used_at": "string",      "revoked_at": "string"    }  ]}