On this page

latest contributor to this doc

Last Edit:

@smk762

Get NFT Transfers

API-v2get_nft_transfers

Returns a list of the NFT transfers involving the user, shown in descending order of the block_timestamp value of the NFT's last transfer.

To view NFT transactions, you must activate the coin that holds the NFTs first.

ParameterTypeRequiredDefaultDescription
chainsarray-List of chains to scan for NFTs. See NftNetworkEnum for allowed values.
maxbooleanfalseIf true, response will return all NFT transfers without pagination, and will ignore the limit and page_number values.
limitinteger10The number of NFT transfers displayed per page in response.
page_numberinteger1The page offset for items in response.
protect_from_spambooleanfalseIf true, any potential spam link found in collection name, token name, or symbol will be replaced with URL redacted for user protection.
filtersobject-A standard NftTransferFilter object.

ParameterTypeDescription
transfer_historylist of objectsA list of standard NftTransfer objects.
totalintegerThe total number of NFT transfers in your wallet matching the request filters.
skippedintegerThe number of NFT transfers in your wallet excluded by the request filters.

Get NFT Transfers

POST
get_nft_transfers
{
  "userpass": "RPC_UserP@SSW0RD",
  "method": "get_nft_transfers",
  "mmrpc": "2.0",
  "params": {
    "chains": [
      "POLYGON"
    ],
    "max": true,
    "filters": {
      "receive": true,
      "from_date": 1678233600
    },
    "protect_from_spam": true
  }
}