Organization

List Api Keys

List all API keys for a given project.

get/v1/organization/projects/{project_id}/api_keys

Path parameters

project_idinteger required

Response

Successful Response

idstring required

API key ID

redacted_valuestring required

Redacted API key value

namestring nullable

Name of the API key

expires_atinteger required

Expiration timestamp

created_atinteger required

Creation timestamp

revoked_atinteger nullable

Revocation timestamp

Example response

[
  {
    "id": "123",
    "redacted_value": "flwr_***",
    "name": "Production App",
    "expires_at": 1790854611,
    "created_at": 1788262611
  }
]

Changes

No recorded changes to this endpoint across all 1 revision of this API.