Transactions
Recipient Transactions
Transactions
Recipient Transactions
Returns the transactions for a given address as recipient
POST
/
transactions-address-recipient
curl --request POST \
--url https://api.blockflow.network/rest/90739f7e-fe01-4655-b303-b6125ce7414f/transactions-address-recipient \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"address": "<string>",
"startDate": "1 day ago (Unix timestamp)",
"endDate": "now (Unix timestamp)",
"page": 1,
"limit": 100
}'
{
"status": 123,
"body": {
"address": "<string>",
"totalTransactions": 123,
"transactions": [
{
"id": "<string>",
"amount": 123,
"timestamp": 123,
"sourceChain": "<string>",
"destinationChain": "<string>",
"transactionType": "<string>",
"transactionHash": "<string>"
}
]
}
}
Authorizations
Body
application/json
Response
200
application/json
Recipient transactions
The response is of type object
.
curl --request POST \
--url https://api.blockflow.network/rest/90739f7e-fe01-4655-b303-b6125ce7414f/transactions-address-recipient \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"address": "<string>",
"startDate": "1 day ago (Unix timestamp)",
"endDate": "now (Unix timestamp)",
"page": 1,
"limit": 100
}'
{
"status": 123,
"body": {
"address": "<string>",
"totalTransactions": 123,
"transactions": [
{
"id": "<string>",
"amount": 123,
"timestamp": 123,
"sourceChain": "<string>",
"destinationChain": "<string>",
"transactionType": "<string>",
"transactionHash": "<string>"
}
]
}
}