Endpoints

Api Spec

get
Responses
200

Successful Response

application/json
Responseany
get
GET /ethereum-rewards/spec.json HTTP/1.1
Host: 
Accept: */*
200

Successful Response

No content

Docs

get
Responses
200

Successful Response

application/json
Responseany
get
GET /ethereum-rewards/docs HTTP/1.1
Host: 
Accept: */*
200

Successful Response

No content

Get Delegator Rewards

get
Authorizations
Query parameters
since_inclusiveany ofOptional

Timestamp (ISO-8601 with time zone). From the beginning if not set

string · date-timeOptional
or
nullOptional
to_exclusiveany ofOptional

Timestamp (ISO-8601 with time zone). Up to most recent entry if not set

string · date-timeOptional
or
nullOptional
delegator_addressstringRequired

Delegator address

vault_addressany ofOptional

Vault address

stringOptional
or
nullOptional
Responses
200

Successful Response

application/json
get
GET /ethereum-rewards/v1/delegator_rewards?delegator_address=text HTTP/1.1
Host: 
x-api-key: YOUR_API_KEY
Accept: */*
{
  "delegator_address": "text",
  "entries": [
    {
      "timestamp": "2025-08-26T16:53:32.738Z",
      "delegator_address": "text",
      "vault_address": "text",
      "denom": "text",
      "stake_amount": "text",
      "rewards": "text",
      "accumulated_rewards": "text",
      "withdrawal": "text",
      "txs": [
        {
          "event_name": "text",
          "tx_hash": "text"
        }
      ]
    }
  ]
}

Was this helpful?