Net Rewards

Returns net rewards, as received by withdrawal addresses

General features described in Rewards Overview

network

Allowed:

start

end

Response Structure

200 Got rewards

Sample CURL Request

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

Example Response

{
  "data": [
    {
      "wallet": "string",
      "timestamp": "string",
      "rewards": [
        {
          "type": "execution",
          "pubkey": "0x9027ebabf426534ae093b552880616acf5c487a89fb6de124785387200719f17c4161a07a933c335a16b38b2ce907e7f",
          "index": 2345,
          "tx_hash": "0x3a340300942ea74c8d8029dc82160609f36c27196e9daf7dd3e69dae81447463",
          "timestamp": "2024-10-24T00:01:00Z",
          "block": 2000034,
          "payees": [
            {
              "address": "string",
              "amount": "string"
            }
          ],
          "network": "hoodi"
        },
        {
          "type": "withdrawal",
          "pubkey": "0x9027ebabf426534ae093b552880616acf5c487a89fb6de124785387200719f17c4161a07a933c335a16b38b2ce907e7f",
          "index": 2345,
          "amount": "string",
          "withdrawal_address": "0xe86154635fd73979fef12b65a5683f06054ae8a3",
          "block": 2000034,
          "epoch": 2345,
          "slot": 234,
          "network": "hoodi"
        }
      ]
    }
  ]
}