Skip to main content

List API Keys

GET/api/v1/user/api-keys

Get all API keys for the user's selected organization.

cURL example

curl -X GET \
  'http://localhost:8000/api/v1/user/api-keys' \
  -H 'Authorization: Bearer <API_KEY>'

Parameters

NameLocationTypeDescription
include_archivedqueryboolean
authorizationheaderobject
X-API-Keyheaderobject

Responses

200Successful Response
application/json
View schema
{
  "type": "array",
  "items": {
    "$ref": "#/components/schemas/APIKeyResponse"
  },
  "title": "Response Get Api Keys Api V1 User Api Keys Get"
}
404Not found
422Validation Error
application/json
View schema
{
  "$ref": "#/components/schemas/HTTPValidationError"
}