cURL
curl --request GET \ --url https://api.agent-drop.com/v1/api-keys \ --header 'Authorization: <authorization>'
{ "keys": [ {} ], "keys[].id": "<string>", "keys[].name": "<string>", "keys[].prefix": "<string>", "keys[].last_used_at": "<string>", "keys[].transfer_count": 123, "keys[].created_at": "<string>" }
List all API keys for your account.
Bearer agd_live_xxxxxxxxxxxxxxxxxxxx
agd_live_xxxx
null
curl -X GET https://api.agent-drop.com/v1/api-keys \ -H "Authorization: Bearer agd_live_xxxxxxxxxxxxxxxxxxxx"
{ "keys": [ { "id": "key_a1b2c3d4", "name": "production-agent", "prefix": "agd_live_xxxx", "last_used_at": "2026-03-28T09:15:00Z", "transfer_count": 142, "created_at": "2026-03-10T08:00:00Z" }, { "id": "key_e5f6g7h8", "name": "staging-tests", "prefix": "agd_live_yyyy", "last_used_at": null, "transfer_count": 0, "created_at": "2026-03-25T16:00:00Z" } ] }
401
UNAUTHORIZED