latestOpenAPI 3.0.02026-08-138371125.7 KB
707a88e0b355
Deposit Data
Retrieve partial deposit data for a validator
This endpoint returns all partial deposit data grouped by amount for a specific validator
get/deposit_data/{lockHash}/{pubkey}
Path parameters
lockHashstring required
The cluster lock hash
pubkeystring required
The validator public key (distributed_public_key)
Response
The deposit data
Example response
{
"pubkey": "0xFULL_1",
"withdrawal_credentials": "0xWITHDRAW_1",
"amounts": [
{
"amount": "32000000000",
"partials": [
{
"partial_public_key": "0xPARTIAL_A",
"partial_deposit_signature": "0xSIG_A1"
}
]
}
]
}