Skip to main content
GET
/
beacon
/
validators
/
deposits
/
pubkey
/
{pubkey}
Validator Deposits by Pubkey
curl --request GET \
  --url https://api.octav.fi/v1/beacon/validators/deposits/pubkey/{pubkey} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "slot": 123,
      "epoch": 123,
      "timestamp": 123,
      "amount": "<string>",
      "depositIndex": 123,
      "withdrawalCredentials": "<string>",
      "withdrawalAddress": "<string>"
    }
  ],
  "offset": 123,
  "limit": 123,
  "totalRows": 123,
  "pages": 123
}

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

pubkey
string
required

48-byte BLS pubkey, hex-encoded with 0x prefix (96 hex characters). Case-insensitive.

Pattern: ^0x[a-fA-F0-9]{96}$

Query Parameters

offset
number
default:0

Pagination offset.

limit
number
default:10

Number of records to return. Max 10.

Required range: x <= 10

Response

Paginated validator deposits

data
object[]
offset
number

Current pagination offset

limit
number

Records per page

totalRows
number

Total number of deposits

pages
number

Total number of pages