Get ERC20 token approvals
Get the token approvals
Query Parameters
cursor string
The cursor returned in the previous response (used for getting the next page).
limit number
Number of items returned, default: 20
Responses
- 200
Successful
application/json
Schema
Example (from schema)
Schema
- Array [
- ]
cursor string
The cursor returned in the previous response (used for getting the next page)
page number required
Page of results
limit number required
Limit of results
total_items number required
Total returned result items
data object[] required
token_name string required
The name or title of the token
token_symbol string required
The symbol of the token
token_decimals number required
The decimals of the token
contract_address string required
The address of the token
transaction_hash string required
The transaction hash of the token
transaction_index number required
The transaction index of the token
log_index number required
The log index of the token
block_hash string required
The block hash of the token
block_number number required
The block number of the token
from_wallet string required
The from wallet of the token
to_wallet string required
The to wallet of the token
value string required
The value of the token
value_decimal string required
The value in decimal of the token
timestamp string required
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"
}
]
}
Loading...