Project HermesHermes Docs

Get Cluster

Get details of a specific cluster

Get Cluster

Returns detailed information about a specific cluster, including its domains and status.

  • id (integer) (required) — The cluster ID
curl -H "Authorization: Bearer hermes_your_api_key" \
  https://api.hermes.camie.ai/v1/clusters/202

Response

{
  "success": true,
  "data": {
    "id": 202,
    "userId": "3dd2d062-...",
    "domain": "outreach-company.com",
    "status": "active",
    "ipAddress": "203.0.113.50",
    "vpsId": "abc-123",
    "mailboxCount": 5,
    "createdAt": "2026-03-10T12:00:00.000Z",
    "updatedAt": "2026-03-10T12:05:00.000Z"
  }
}

On this page