Endpoints
Authorizations
Query parameters
since_inclusiveany ofOptional
Timestamp (ISO-8601 with time zone). From the beginning if not set
string · date-timeOptional
nullOptional
to_exclusiveany ofOptional
Timestamp (ISO-8601 with time zone). Up to most recent entry if not set
string · date-timeOptional
nullOptional
delegator_addressstringRequired
Delegator address
vault_addressany ofOptional
Vault address
stringOptional
nullOptional
Responses
200
Successful Response
application/json
401
Unrecognized or missing API key
404
Data not found for the filter
422
Validation Error
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?