Project HermesHermes Docs

List API Keys

List all API keys

List API Keys

curl -H "Authorization: Bearer your_jwt_token" \
  https://api.hermes.camie.ai/api/keys

Response

{
  "success": true,
  "data": [
    {
      "id": "key-uuid",
      "name": "Production Key",
      "keyPrefix": "hermes_a1b2...",
      "isActive": true,
      "requestCount": 150,
      "lastUsedAt": "2026-03-14T16:00:00.000Z",
      "createdAt": "2026-03-01T00:00:00.000Z"
    }
  ]
}

On this page