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.
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
Authorization
apiKey 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" } ]}Rotate your API key POST
Rotate (regenerate) the caller's own API key. Authenticate with your current key. The old key dies immediately and the new key is returned once in the response body — store…
Create a secondary API key POST
Mint a new secondary API key. PRIMARY-KEY ONLY — calling this with a secondary key returns 403. The full key is returned exactly once, in this response, and is never…