v2

latestOpenAPI 3.0.0raw.githubusercontent.com2026-02-16143114179.4 KB
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"
    ]
  }
]