Stats
Top Burn Senders
Stats
Top Burn Senders
Get top senders
POST
/
stats-senders
curl --request POST \
--url https://api.blockflow.network/rest/90739f7e-fe01-4655-b303-b6125ce7414f/stats-senders \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"startDate": "1 day ago (Unix timestamp)",
"endDate": "now (Unix timestamp)",
"limit": "100"
}'
{
"status": 123,
"body": {
"startDate": 123,
"endDate": 123,
"topRecipients": [
{
"address": "<string>",
"totalVolume": 123,
"transactionCount": 123
}
]
}
}
Authorizations
Body
application/json
Response
200
application/json
Top senders
The response is of type object
.
curl --request POST \
--url https://api.blockflow.network/rest/90739f7e-fe01-4655-b303-b6125ce7414f/stats-senders \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"startDate": "1 day ago (Unix timestamp)",
"endDate": "now (Unix timestamp)",
"limit": "100"
}'
{
"status": 123,
"body": {
"startDate": 123,
"endDate": 123,
"topRecipients": [
{
"address": "<string>",
"totalVolume": 123,
"transactionCount": 123
}
]
}
}