List Api Keys
GEThttps://cloud.agenta.ai/api/keys
List all API keys associated with the authenticated user.
Args: request (Request): The incoming request object.
Returns: List[ListAPIKeysResponse]: A list of API Keys associated with the user.
Responses
- 200
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
prefix Prefix (string)required
created_at date-timerequired
last_used_at date-time
expiration_date date-time
[
{
"prefix": "string",
"created_at": "2024-08-19T07:55:03.636Z",
"last_used_at": "2024-08-19T07:55:03.636Z",
"expiration_date": "2024-08-19T07:55:03.636Z"
}
]
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://cloud.agenta.ai/api/keys' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>'
ResponseClear