getNFTContractTransfers
Retrieve NFT transfers for a specific contract using block numbers or dates. Filter by time range, include sale prices, and paginate results for detailed blockchain insights.
Instructions
Get transfers of NFTs for a given contract and other parameters.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | No | The address of the NFT contract | |
cursor | No | The cursor returned in the previous response (used for getting the next page). | |
format | No | The format of the token ID | |
from_block | No | The minimum block number from where to get the transfers * Provide the param 'from_block' or 'from_date' * If 'from_date' and 'from_block' are provided, 'from_block' will be used. | |
from_date | No | The date from where to get the transfers (format in seconds or datestring accepted by momentjs) * Provide the param 'from_block' or 'from_date' * If 'from_date' and 'from_block' are provided, 'from_block' will be used. | |
include_prices | No | Should NFT last sale prices be included in the result? | |
limit | No | The desired page size of the result. | |
to_block | No | The maximum block number from where to get the transfers. * Provide the param 'to_block' or 'to_date' * If 'to_date' and 'to_block' are provided, 'to_block' will be used. | |
to_date | No | Get transfers up until this date (format in seconds or datestring accepted by momentjs) * Provide the param 'to_block' or 'to_date' * If 'to_date' and 'to_block' are provided, 'to_block' will be used. |