Skip to content
Guides
Platform & IdentityAPI Keys
api_key:read

List API keys

Returns the API keys visible to the current user. Plaintext key values are never returned.

GET/v1/api-keys

Returns the API keys visible to the current user. Plaintext key values are never returned.

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth2 access token issued by Ecomiq Auth.

In: header

Header Parameters

Authorization*string

OAuth 2.0 bearer token.

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/api-keys" \  -H "Authorization: Bearer <token>"
[  {    "id": "7204558912004325301",    "name": "Example resource",    "prefix": "example",    "keySuffix": "example",    "applicationUrl": "https://example.com/resource",    "isActive": false,    "isTestMode": false,    "expiresAt": "2026-08-01T15:30:00Z"  }]