MATIC Rewards

Returns delegator rewards by checkpoint. Max 50 accounts per request.

General features described in Rewards Overview

Request Parameters

delegator_addresses

start

end

Response Structure

200 A rewards result set with metadata.

Response Object

meta

Example cURL Request

curl --request POST \
     --url https://api.figment.io/polygon/rewards \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --header 'x-api-key: your-api-key-here'

Example Response

{
  "data": [
    {
      "delegator_address": "0xA722e1F10Bc95c102251A13c2bbCB61A67257003",
      "validator": "0xF9e9b98dd99114C6C1B5C28Ae101849880E9542f",
      "checkpoint": "45500",
      "timestamp": "2023-07-21T00:00:00Z",
      "rewards": [
        {
          "text": "0.000817335418355351",
          "currency": "MATIC",
          "numeric": 817335418355351,
          "exp": 18
        }
      ],
      "balances": [
        {
          "text": "302.56",
          "currency": "MATIC",
          "numeric": 302560000000000000000,
          "exp": 18
        }
      ]
    }
  ],

"meta": {
    "protocol": "polygon",
    "network": "mainnet",
    "time_rollup": "checkpoint"
  }
}