API keys management
List API keys
Integration methods
Prompt
- Prompt creation
- Prompt retrieval
- Prompt update
- Prompt delete
Multimodal integrations
Model
API keys management
List API keys
GET
/
api
/
temporary-keys
curl --request GET \
--url https://api.keywordsai.co/api/temporary-keys/ \
--header 'Authorization: Bearer <token>'
You can list all temporary API keys by sending a GET request to the temporary keys endpoint.
Response
{
"results": [
{
"id": "vcjRcdm8...",
"name": "Keywords AI temporary key",
"expiry_date": "2025-03-15T01:19:33.263343Z",
"max_usage": -1,
},
{
"id": "vcjRcdm8...",
"name": "Keywords AI temporary key",
"expiry_date": "2025-03-15T01:19:33.263343Z",
"max_usage": -1,
}
],
"count": 0,
"previous": null, // pagination
"next": null, // pagination
"current_filters": {}
}
Was this page helpful?
curl --request GET \
--url https://api.keywordsai.co/api/temporary-keys/ \
--header 'Authorization: Bearer <token>'