Retrieve a single organization API key
Get details for a specific organization API key by its ID.
get/organization/admin_api_keys/{key_id}
Path parameters
key_idstring required
The ID of the API key.
Response
Details of the requested API key.
Example response
{
"object": "organization.admin_api_key",
"id": "key_abc",
"name": "Administration Key",
"redacted_value": "sk-admin...def",
"value": "sk-admin-1234abcd",
"created_at": 1711471533,
"owner": {
"type": "service_account",
"id": "sa_456",
"name": "My Service Account",
"created_at": 1711471533,
"role": "member"
}
}