Stats
Top Mint Recipients
Stats
Top Mint Recipients
Get top recipients
POST
/
stats-recipients
curl --request POST \
--url https://api.blockflow.network/rest/90739f7e-fe01-4655-b303-b6125ce7414f/stats-recipients \
--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 recipients
The response is of type object
.
curl --request POST \
--url https://api.blockflow.network/rest/90739f7e-fe01-4655-b303-b6125ce7414f/stats-recipients \
--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
}
]
}
}