State
This endpoint is used to retrieve the states of all validators in a DV Cluster
Path parameters
lockHashstringRequired
The lock_hash
calculated for a cluster lock.
Responses
200
A map of pubkeys to DVState
application/json
Responseany ofExample:
{"0x000000000000000000000000000000":{"index":"0","status":"active_ongoing","balance":"32"}}
400
Bad request received
404
Lock Hash not found
500
An unknown error occurred
get
GET //v1/state/{lockHash} HTTP/1.1
Host: api.obol.tech
Accept: */*
{
"0x000000000000000000000000000000": {
"index": "0",
"status": "active_ongoing",
"balance": "32"
}
}
Was this helpful?