Get Transfers From A Block To A Block
Get transfers of NFTs from a block number to a block number.
Get transfers of NFTs from a block number to a block number.
Query parameters
cursorstringOptionalDefault:
The cursor returned in the previous response (used for getting the next page).
""
limitintegerOptionalDefault:
The desired page size of the result.
10
from_blockintegerOptionalDefault:
The minimum block number from which to start the search
0
to_blockintegerOptionalDefault:
The maximum block number from which to end the search
0
chainall ofRequired
The chain to query
string · enumOptionalPossible values:
An enumeration.
formatall ofOptionalDefault:
The format of the token ID
decimal
string · enumOptionalPossible values:
An enumeration.
Responses
200
Successful Response
application/json
404
ErrorMessage
application/json
422
HTTPValidationError
application/json
get
GET /api/transfers?chain=eth HTTP/1.1
Host:
Accept: */*
{
"status": "SYNCED",
"total": 0,
"page": 0,
"page_size": 0,
"cursor": "",
"result": [
{
"block_number": "text",
"block_timestamp": "text",
"block_hash": "text",
"log_index": 1,
"transaction_hash": "text",
"transaction_index": 1,
"transaction_type": "text",
"contract_type": "text",
"token_address": "",
"token_id": "",
"from_address": "",
"to_address": "",
"amount": "",
"value": "",
"operator": ""
}
]
}
Last updated