cURL
curl --request GET \ --url https://api.uplint.dev/api/v1/api-keys/simple \ --header 'Authorization: Bearer <token>'
{ "status": "SUCCESS", "message": "API keys retrieved", "data": [ { "api_key_id": "6612f1a2c3b4d5e6f7890123", "name": "Backend Service", "status": "active" }, { "api_key_id": "6612f1a2c3b4d5e6f7890456", "name": "Mobile App", "status": "active" } ], "timestamp": "2026-02-10T12:00:00Z" }
Lightweight list of all API keys for the current tenant. Returns only the key ID, name, and status — useful for dropdowns or quick lookups.
Pass an API key or JWT token. API keys can be sent as Authorization: Bearer <key> or Authorization: <key>.
Authorization: Bearer <key>
Authorization: <key>
Simple list of API keys.
SUCCESS
Show child attributes
Was this page helpful?