get https://api.amberdata.com/blockchains/blocks//token-transfers
Retrieves all the tokens which were transferred at the specified block number.
Blockchains Supported
This endpoint supports Ethereum and Polygon.
Response Data
Field | Type | Description |
---|---|---|
metadata | object | The metadata associated with the token transfer data. |
data | array | The token transfer data corresponding to the columns fields. |
columns | array | The name of the columns associated with the returned data e.g. [ timestamp, tokenAddress, ...] . |
timestamp | number | The time when the transfer occurred. |
tokenAddress | string | The contract address of the token. |
from | string | The sending address. |
to | string | The receiving address. |
amount | string | The amount of tokens transferred. Important note: If the token type is ERC721, the amount value represents the token id |
blockNumber | string | The number of the block that contains the token transfer. |
transactionHash | string | The hash of the transaction in which the transfer occurred. |
endDate | number | The end of the time frame. |
startDate | number | The start of the time frame. |