latestOpenAPI 3.1.02026-08-145096557.0 KB

1c983de099e2

identity-access

List api keys

Retrieves the list of API keys associated with this account

get/v1/account/my/api-keys

Response

Successful Response

namestring nullable

User-provided name identifier for the API key.

referencestring required

Last four characters of the API key value, used for identification.

last_used_atstring date-time nullable

Timestamp of the last time the API key was used.

expires_atstring date-time required

Expiration timestamp after which the API key can no longer be used.

is_activeboolean required

Whether the API key is currently active and can be used for authentication.

Example response

[
  {
    "name": "My Production Key",
    "reference": "ab1C",
    "person": {
      "first_name": "John",
      "last_name": "Doe",
      "email": "john.doe@example.com"
    },
    "last_used_at": "2026-04-01T12:30:00Z",
    "expires_at": "2027-04-07T00:00:00Z",
    "is_active": true
  }
]