Rewards

General features described in Rewards Overview

Powered by Tres

Network

Network Rewards are on.

Start

Rewards received on or after this date

End

Rewards received on or before this date

Response Structure

200 Got rewards

Object

Data

Array of objects

Example Request

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

Example Response

{
  "data": [
    {
      "address": "string",
      "validator": "string",
      "timestamp": "2024-10-24T00:01:00Z",
      "reward": 0.008,
      "reward_usd": 0.02,
      "total_staked": 2
    }
  ]
}