API Reference / API Keys

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

FieldTypeDescription
success boolean
message string
data ApiKeyResponseDto[]

Status codes

  • 200 — API keys returned successfully
  • 401 — User is not authenticated
  • 403 — User does not have access to Settings pillar
  • 429 — —

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.