Get ERC20 token approvals from a block to a block
Get ERC20 token approvals from a block to a block
Query Parameters
The minimum block number from which to get the transfers
The maximum block number from which to get the transfers
The cursor returned in the previous response (used for getting the next page).
Number of items returned, default: 20
- 200
Successful
Schema
- Array [
- ]
The cursor returned in the previous response (used for getting the next page)
Page of results
Limit of results
Total returned result items
data object[] required
The name or title of the token
The symbol of the token
The decimals of the token
The address of the token
The transaction hash of the token
The transaction index of the token
The log index of the token
The block hash of the token
The block number of the token
The from wallet of the token
The to wallet of the token
The value of the token
The value in decimal of the token
The timestamp of the token approval
{
"cursor": "string",
"page": 0,
"limit": 0,
"total_items": 0,
"data": [
{
"token_name": "string",
"token_symbol": "string",
"token_decimals": 0,
"contract_address": "string",
"transaction_hash": "string",
"transaction_index": 0,
"log_index": 0,
"block_hash": "string",
"block_number": 0,
"from_wallet": "string",
"to_wallet": "string",
"value": "string",
"value_decimal": "string",
"timestamp": "1687064975"
}
]
}