OpenAIOpenAI API
GET/organization/admin_api_keys
Read admin Api Keys List.
Contract-preserving GET Endpoint for admin Api Keys List in the OpenAI API. Model and resource-specific values are supplied by the caller at runtime.
All 288 OpenAI Platform REST endpoints from a fixed MIT-licensed official revision, including typed SSE streaming and Realtime call management. Hub provides documentation and an independent SDK/CLI, but never proxies model, account, or usage data; callers connect directly with local API keys.
Request
- operationId
adminApiKeysList- Server
https://api.openai.com/v1- Authentication
- ApiKeyAuth, AdminApiKeyAuth
Request parameters
after
querystring
after value in the OpenAI API contract.
order
querystring
order value in the OpenAI API contract.
limit
queryinteger
limit value in the OpenAI API contract.
Responses
200
ApiKeyListapplication/json
Successful supplier response.
Properties: datafirst_idhas_morelast_idobject
{
"data": {
"created_at": 1711471533,
"id": "key_abc",
"name": "Administration Key",
"object": "organization.admin_api_key",
"owner": {
"created_at": 1711471533,
"id": "sa_456",
"name": "My Service Account",
"object": "organization.user",
"role": "owner",
"type": "user"
},
"redacted_value": "sk-admin...def"
},
"first_id": "key_abc",
"has_more": false,
"last_id": "key_xyz",
"object": "list"
}