List API Keys
GET
/api/v1/user/api-keysGet 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
| Name | Location | Type | Description |
|---|---|---|---|
include_archived | query | boolean | — |
authorization | header | object | — |
X-API-Key | header | object | — |
Responses
200Successful Responseapplication/jsonView schema
{
"type": "array",
"items": {
"$ref": "#/components/schemas/APIKeyResponse"
},
"title": "Response Get Api Keys Api V1 User Api Keys Get"
}404Not found422Validation Errorapplication/jsonView schema
{
"$ref": "#/components/schemas/HTTPValidationError"
}