Skip to main content
GET
/
beacon
/
validators
/
details
/
index
/
{index}
Validator Details by Index
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.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

index
integer
required

Non-negative validator index

Required range: x >= 0

Response

Validator details

validator
object
lifecycle
object
balance
object
withdrawalCredentials
object