v1

latestOpenAPI 3.0.02026-07-26268286602.5 KB
addresses

List Celo election rewards for a specific address

Retrieves Celo election rewards for a specific address.

get/{chain_id}/api/v2/addresses/{address_hash_param}/celo/election-rewards

Path parameters

address_hash_paramstring required

Address hash in the path

chain_idstring required

The ID of the blockchain

Query parameters

items_countinteger

Number of items per page

epoch_numberstring

Epoch number for paging

amountstring nullable

Amount for paging

associated_account_address_hashstring

Associated account address hash for paging

type'voter' | 'validator' | 'group' | 'delegated_payment' | 'delegated-payment'

Type for paging

Response

Celo election rewards for the specified address.

next_page_paramsobject nullable required

Example response

{
  "items": [
    {
      "token": {
        "icon_url": "https://example.com"
      }
    }
  ],
  "next_page_params": {
    "amount": "1000000000000000000",
    "associated_account_address_hash": "0x1234567890123456789012345678901234567890",
    "epoch_number": 100,
    "type": "validator"
  }
}