curl --request GET \
--url https://api.octav.fi/v1/beacon/validators/details/index/{index} \
--header 'Authorization: Bearer <token>'{
"validator": {
"index": 123,
"pubkey": "<string>",
"slashed": true,
"status": "pending"
},
"lifecycle": {
"activationEpoch": 123,
"activationTimestamp": 123,
"exitEpoch": 123,
"withdrawableEpoch": 123
},
"balance": {
"actual": "<string>",
"effective": "<string>"
},
"withdrawalCredentials": {
"prefix": 123,
"credential": "<string>",
"address": "<string>"
}
}Get current state, lifecycle epochs, balance, and withdrawal credentials for a single validator by its index.
Cost: 1 credit per call. Automatically refunded on 4xx/5xx responses.
Access: Requires portfolio entitlement.
Rate limit: 360 req/min (shared with portfolio bucket)
Get your API key: Dev Portal
curl --request GET \
--url https://api.octav.fi/v1/beacon/validators/details/index/{index} \
--header 'Authorization: Bearer <token>'{
"validator": {
"index": 123,
"pubkey": "<string>",
"slashed": true,
"status": "pending"
},
"lifecycle": {
"activationEpoch": 123,
"activationTimestamp": 123,
"exitEpoch": 123,
"withdrawableEpoch": 123
},
"balance": {
"actual": "<string>",
"effective": "<string>"
},
"withdrawalCredentials": {
"prefix": 123,
"credential": "<string>",
"address": "<string>"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.octav.fi/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Non-negative validator index
x >= 0Was this page helpful?