Tenants

List API keys

Retrieve all API keys for the tenant. Keys are masked for security — only the last 8 characters are shown.

get/api/tenants/me/api-keys

Response

List of API keys with masked values

idstring required
keystring required
namestring required
scopesstring[] required
lastUsedstring
expiresAtstring
createdAtstring required

Example response

[
  {
    "id": "clx1234567890",
    "key": "sk_live_abc123...",
    "name": "Production API Key",
    "scopes": [
      "read",
      "write"
    ]
  }
]

Changes

Changed in 1 of the 2 revisions of this API.1

    • added the media type application/json for the response with the status 200

      response-media-type-added