v1

latestOpenAPI 3.0.3Apache-2.02026-07-1348142206.6 KB
accounts

Get past staking reward payouts for an account

Returns information for all past staking reward payouts for an account.

get/api/v1/accounts/{idOrAliasOrEvmAddress}/rewards

Path parameters

idOrAliasOrEvmAddressstring required

Account alias or account id or evm address

Query parameters

limitinteger

The maximum number of items to return

order'asc' | 'desc'

The order in which items are listed

timestampstring[]

The consensus timestamp as a Unix timestamp in seconds.nanoseconds format with an optional comparison operator. See unixtimestamp.com for a simple way to convert a date to the 'seconds' part of the Unix time.

Response

OK

Example response

{
  "rewards": [
    {
      "account_id": "0.0.1000",
      "amount": 10,
      "timestamp": "1234567890.000000001"
    }
  ]
}