Transactions
Burn Transactions
Transactions
Burn Transactions
Get burn transactions
POST
/
transactions-burn
curl --request POST \
--url https://api.blockflow.network/rest/90739f7e-fe01-4655-b303-b6125ce7414f/transactions-burn \
--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": [
{
"sourceChain": "<string>",
"destinationChain": "<string>",
"totalAmount": 123,
"chain": "<string>",
"transactions": [
{
"id": "<string>",
"amount": 123,
"timestamp": 123,
"isCompleted": true,
"sourceDomain": "<string>",
"destinationDomain": "<string>",
"mintRecipient": "<string>",
"messageSender": "<string>",
"burnToken": "<string>",
"destinationCaller": "<string>",
"detinationTokenMessenger": "<string>"
}
]
}
]
}
Authorizations
Body
application/json
Response
200
application/json
Burn transactions
The response is of type object
.
curl --request POST \
--url https://api.blockflow.network/rest/90739f7e-fe01-4655-b303-b6125ce7414f/transactions-burn \
--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": [
{
"sourceChain": "<string>",
"destinationChain": "<string>",
"totalAmount": 123,
"chain": "<string>",
"transactions": [
{
"id": "<string>",
"amount": 123,
"timestamp": 123,
"isCompleted": true,
"sourceDomain": "<string>",
"destinationDomain": "<string>",
"mintRecipient": "<string>",
"messageSender": "<string>",
"burnToken": "<string>",
"destinationCaller": "<string>",
"detinationTokenMessenger": "<string>"
}
]
}
]
}