Get all API keys
Retrieves the metadata for all of the API keys that the user generated.
GET
/users/auth/keys
curl \
--request GET 'https://{{hostname}}/api/v1/users/auth/keys'
Response examples (200)
{
"keys": [
{
"id": "string",
"user_id": "string",
"organization_id": "string",
"description": "string",
"key": "string",
"creation_date": "2025-05-04T09:42:00Z",
"expiration_date": "2025-05-04T09:42:00Z"
}
]
}