Withdrawals

Parameters

Response

200 List of validator withdrawals.

Error Codes

Example Request

curl --request POST \
     --url https://api.figment.io/ethereum/withdrawals \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header 'x-api-key: your-api-key-here' \
     --data '{
  "network": "mainnet"
}'

Example Response

{
  "data": [
    {
      "index": 7642977,
      "pubkey": "0x9999e34d7049e81fb48cefdfa0e671b920ea1a1a292c3596041da2698a9ed303b802806c5ffd49498413c4b97748239f",
      "validator_index": 626955,
      "withdrawal_address": "0xe187d594402c8f6b147f22d443406d1b1edebdc7",
      "amount_text": "32",
      "currency": "ETH",
      "amount_numeric": 32000000000000000000,
      "exp": 18,
      "full_withdrawal": true,
      "slot": 6694928,
      "block_number": 17512592,
      "epoch": 209216,
      "timestamp": "2023-06-19T08:25:36Z"
    }
  ],
  "meta": {
    "protocol": "ethereum",
    "network": "mainnet"
  }
}

Update

Updated 3 months ago