curl --request GET \
--url https://api.octav.fi/v1/beacon/validators/details/pubkey/{pubkey} \
--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 BLS pubkey.
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/pubkey/{pubkey} \
--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.
48-byte BLS pubkey, hex-encoded with 0x prefix (96 hex characters). Case-insensitive.
^0x[a-fA-F0-9]{96}$Was this page helpful?