Transactions
Volume In
Transactions
Volume In
Get volume bridged into a specific domain
POST
/
transactions-volume-in
curl --request POST \
--url https://api.blockflow.network/rest/90739f7e-fe01-4655-b303-b6125ce7414f/transactions-volume-in \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"startDate": "1 day ago (Unix timestamp)",
"endDate": "now (Unix timestamp)",
"sourceDomain": "[\"0\",\"1\",\"2\",\"3\",\"6\",\"7\"]",
"destinationDomain": "[\"0\",\"1\",\"2\",\"3\",\"6\",\"7\"]",
"page": 1,
"limit": 100
}'
{
"status": 123,
"body": {
"startDate": 123,
"endDate": 123,
"totalVolume": 123,
"totalCount": 123,
"volumeBreakdown": [
{
"sourceChain": "<string>",
"destinationChain": "<string>",
"totalAmount": 123,
"count": 123
}
]
}
}
Authorizations
Body
application/json
Response
200
application/json
Volume bridged into a specific domain
The response is of type object
.
curl --request POST \
--url https://api.blockflow.network/rest/90739f7e-fe01-4655-b303-b6125ce7414f/transactions-volume-in \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"startDate": "1 day ago (Unix timestamp)",
"endDate": "now (Unix timestamp)",
"sourceDomain": "[\"0\",\"1\",\"2\",\"3\",\"6\",\"7\"]",
"destinationDomain": "[\"0\",\"1\",\"2\",\"3\",\"6\",\"7\"]",
"page": 1,
"limit": 100
}'
{
"status": 123,
"body": {
"startDate": 123,
"endDate": 123,
"totalVolume": 123,
"totalCount": 123,
"volumeBreakdown": [
{
"sourceChain": "<string>",
"destinationChain": "<string>",
"totalAmount": 123,
"count": 123
}
]
}
}