Skip to main content
GET
/
v2
/
celo
/
epochs
/
{number}
/
election-rewards
/
{type}
List Celo epoch election rewards.
curl --request GET \
  --url http://localhost/api/v2/celo/epochs/{number}/election-rewards/{type}
{
  "items": [
    {
      "account": {
        "ens_domain_name": "<string>",
        "hash": "<string>",
        "implementations": [
          {
            "address_hash": "<string>",
            "name": "<string>"
          }
        ],
        "is_contract": true,
        "is_scam": true,
        "is_verified": true,
        "metadata": {
          "tags": [
            {
              "meta": {},
              "name": "<string>",
              "ordinal": 123,
              "slug": "<string>",
              "tagType": "<string>"
            }
          ]
        },
        "name": "<string>",
        "proxy_type": "eip1167",
        "reputation": "ok",
        "private_tags": [
          {
            "address_hash": "<string>",
            "display_name": "<string>",
            "label": "<string>"
          }
        ],
        "public_tags": [
          {
            "address_hash": "<string>",
            "display_name": "<string>",
            "label": "<string>"
          }
        ],
        "watchlist_names": [
          {
            "display_name": "<string>",
            "label": "<string>"
          }
        ]
      },
      "amount": "<string>",
      "associated_account": {
        "ens_domain_name": "<string>",
        "hash": "<string>",
        "implementations": [
          {
            "address_hash": "<string>",
            "name": "<string>"
          }
        ],
        "is_contract": true,
        "is_scam": true,
        "is_verified": true,
        "metadata": {
          "tags": [
            {
              "meta": {},
              "name": "<string>",
              "ordinal": 123,
              "slug": "<string>",
              "tagType": "<string>"
            }
          ]
        },
        "name": "<string>",
        "proxy_type": "eip1167",
        "reputation": "ok",
        "private_tags": [
          {
            "address_hash": "<string>",
            "display_name": "<string>",
            "label": "<string>"
          }
        ],
        "public_tags": [
          {
            "address_hash": "<string>",
            "display_name": "<string>",
            "label": "<string>"
          }
        ],
        "watchlist_names": [
          {
            "display_name": "<string>",
            "label": "<string>"
          }
        ]
      },
      "block_hash": "<string>",
      "block_number": 123,
      "block_timestamp": "2023-11-07T05:31:56Z",
      "epoch_number": 123,
      "token": {
        "address_hash": "<string>",
        "circulating_market_cap": "<string>",
        "decimals": "<string>",
        "exchange_rate": "<string>",
        "holders_count": "<string>",
        "icon_url": "https://example.com",
        "name": "<string>",
        "reputation": "ok",
        "symbol": "<string>",
        "total_supply": "<string>",
        "type": "ERC-20",
        "volume_24h": "<string>",
        "bridge_type": "omni",
        "foreign_address": "<string>",
        "origin_chain_id": "<string>"
      },
      "type": "voter"
    }
  ],
  "next_page_params": {
    "account_address_hash": "0x1234567890123456789012345678901234567890",
    "amount": "1000000000000000000",
    "associated_account_address_hash": "0x0987654321098765432109876543210987654321",
    "items_count": 50
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.blockscout.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

number
string
required

Epoch number in the path.

Pattern: ^-?([1-9][0-9]*|0)$
type
enum<string>
required

Reward type in the path.

Available options:
voter,
validator,
group,
delegated_payment,
delegated-payment

Query Parameters

apikey
string

API key for rate limiting or for sensitive endpoints

key
string

Secret key for getting access to restricted resources

amount
string | null

Amount for paging

Pattern: ^-?([1-9][0-9]*|0)$
account_address_hash
string

Account address hash for paging

Pattern: ^0x([A-Fa-f0-9]{40})$
associated_account_address_hash
string

Associated account address hash for paging

Pattern: ^0x([A-Fa-f0-9]{40})$
items_count
integer

Number of items returned per page

Required range: 1 <= x <= 50

Response

Election rewards for the specified Celo epoch.

items
ElectionReward · object[]
required
next_page_params
object
required
Example:
{
"account_address_hash": "0x1234567890123456789012345678901234567890",
"amount": "1000000000000000000",
"associated_account_address_hash": "0x0987654321098765432109876543210987654321",
"items_count": 50
}