Transactions
Transaction Volume
Get transaction volume over time
POST
/
transactions-volume
curl --request POST \
--url https://api.blockflow.network/rest/90739f7e-fe01-4655-b303-b6125ce7414f/transactions-volume \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"startDate": "1 day ago (Unix timestamp)",
"endDate": "now (Unix timestamp)"
}'
{
"status": 123,
"body": {
"startDate": 123,
"endDate": 123,
"mintVolume": 123,
"burnVolume": 123,
"totalVolume": 123,
"mintCount": 123,
"burnCount": 123,
"totalCount": 123
}
}
Authorizations
Body
application/json
Response
200
application/json
Transaction volume
The response is of type object
.
curl --request POST \
--url https://api.blockflow.network/rest/90739f7e-fe01-4655-b303-b6125ce7414f/transactions-volume \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"startDate": "1 day ago (Unix timestamp)",
"endDate": "now (Unix timestamp)"
}'
{
"status": 123,
"body": {
"startDate": 123,
"endDate": 123,
"mintVolume": 123,
"burnVolume": 123,
"totalVolume": 123,
"mintCount": 123,
"burnCount": 123,
"totalCount": 123
}
}
Assistant
Responses are generated using AI and may contain mistakes.