v1
latestOpenAPI 3.1.02026-07-24223580832.9 KBBalances & UTXO
Get a Financial Report for an Address Between a Time Period
Returns a financial report by a user-defined account address between a time period. Default timescale is within the last 30 days.
get/{protocol}/{network}/account/{address}/report
Path parameters
protocolstring required
Protocol handle, one of: algorand, polkadot, stellar tezos, xrp.
networkstring required
Which network to target. Available networks can be found in the list of supported protocols or with /{protocol}.
addressstring required
The account address of the protocol.
Query parameters
frominteger
The Unix Timestamp from where to start.
tointeger
The Unix Timestamp from where to end.
page_tokenstring
The token to retrieve more items in the next request. Use the next_page_token returned from the previous response for this parameter.
page_sizeinteger
The max number of items to return in a response. Defaults to 50k and is capped at 100k.
Response
Account Activity
Example response
{
"fields": [
{
"protocol": "Algorand",
"address": "GXL2EQ6JV54MTMP2IXOTF5CJLS7GAWMRDZMOY7JZAPO72AQRDDYGD6OX3E",
"currency": "ALGO",
"event_id": "RNEYUT3MRYGT5ENSLIC7LGJCJMW6BXNS6SAW7A25DTYRW4TFJ5JA",
"block": 8986217,
"timestamp": 1599745403,
"hash": "RNEYUT3MRYGT5ENSLIC7LGJCJMW6BXNS6SAW7A25DTYRW4TFJ5JA",
"action": "pay",
"value": "1000000",
"fee": "1000",
"sender_address": "T3BYUTYZCWV7UVK7IFYPC2UKH5VNBGVP4PUKSUBF5F6GQ244Y4I2XUWCQM",
"decimals": 6,
"meta": {
"sender_reward": "121176",
"recipient_reward": "0",
"close": "XIU7HGGAJ3QOTATPDSIIHPFVKMICXKHMOR2FJKHTVLII4FAOA3CYZQDLG4",
"close_amount": "0",
"close_reward": "0"
}
}
],
"items": 1,
"page_size": 100,
"page_token": "xyz"
}