List API keys
get
https://api.intelig.ai/api/v1/intelig/api-keys
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: listApiKeys
Returns all active API keys for the organization (prefix only, never the full key)
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/api-keys" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Response 200
application/json · ApiResponseListApiKeyResponseDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | ApiKeyResponseDto[] | — |
Status codes
200— API keys returned successfully401— User is not authenticated403— User does not have access to Settings pillar429— —
Every response is wrapped in { success, message, data }. A 4xx means the request
is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.