Ranked node snapshot
GET
/v1/internal/lb/snapshot
const url = 'https://example.com/v1/internal/lb/snapshot';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/snapshotThe current ranked snapshot, for inspection.
Responses
Section titled “Responses”OK
Media typeapplication/json
object
refreshed_at
string format: date-time
nodes
Array<object>
object
host
string
name
string
http_port
integer
active_calls
integer
Examplegenerated
{ "refreshed_at": "2026-04-15T12:00:00Z", "nodes": [ { "host": "example", "name": "example", "http_port": 1, "active_calls": 1 } ]}