Live hermes node objects
GET
/v1/internal/lb/nodes
const url = 'https://example.com/v1/internal/lb/nodes';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/internal/lb/nodesRaw live hermes:node:* objects (bypasses the snapshot), for inspection.
Responses
Section titled “Responses”OK
Media typeapplication/json
Array<object>
object
host
string
name
string
status
string
stats
object
active_calls
integer
version
string
http_port
integer
updated_at
string format: date-time
Example
[ { "host": "10.0.0.3", "name": "hermes-prod-0", "status": "pending", "stats": { "active_calls": 10 }, "http_port": 8080 }]