Skip to main content
GET
/
developer
/
api
curl https://api.60db.ai/developer/api \
  -H "Authorization: Bearer your-api-key"
{
  "api_keys": [
    {
      "id": "key-123",
      "name": "Production Key",
      "key": "sk_live_**********************abc",
      "created_at": "2026-01-15T10:00:00Z",
      "last_used": "2026-01-29T11:30:00Z"
    }
  ]
}

Request

Headers

Authorization
string
required
Bearer token with your API key

Response

api_keys
array
Array of API key objects
api_keys[].id
string
API key ID
api_keys[].name
string
API key name
api_keys[].key
string
API key (masked)
api_keys[].created_at
string
Creation timestamp
api_keys[].last_used
string
Last used timestamp
curl https://api.60db.ai/developer/api \
  -H "Authorization: Bearer your-api-key"
{
  "api_keys": [
    {
      "id": "key-123",
      "name": "Production Key",
      "key": "sk_live_**********************abc",
      "created_at": "2026-01-15T10:00:00Z",
      "last_used": "2026-01-29T11:30:00Z"
    }
  ]
}