Get a list of NFT transfersAPI-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.

Request Parameters

ParameterTypeDescription
chainsarrayList of chains to scan for NFTs.
maxbooleanOptional, defaults to false. If true, response will return all NFT transfers without pagination, and will ignore the limit and page_number values.
limitintegerOptional, defaults to 10. The number of NFT transfers displayed per page in response.
page_numberintegerOptional, defaults to 1. The page offset for items in response.
protect_from_spambooleanOptional, defaults to false. If true, any potential spam link found in collection name, token name, symbol will be replaced with URL redacted for user protection
filtersobjectOptional. A standard NftTransferFilter object.

Response Parameters

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.

📌 Example with date and send filters

POST Get a list of NFT transfers 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
  }
}
Show Response
{
  "mmrpc": "2.0",
  "result": {
    "transfer_history": [
      {
        "block_hash": "0xfd012e9dc2c7fa652ae3c0923599a9e6196520ac46e55f0f467d3a1ce84b8580",
        "transaction_hash": "0x4063c4ae3e56a06b6c8768ad76e0cb1523e671cf06e4325517106497778ede9e",
        "transaction_index": 87,
        "log_index": 468,
        "value": "0",
        "transaction_type": "Single",
        "token_address": "0x48c75fbf0452fa8ff2928ddf46b0fe7629cca2ff",
        "from_address": "0xf622a6c52c94b500542e2ae6bcad24c53bc5b6a2",
        "to_address": "0xf622a6c52c94b500542e2ae6bcad24c53bc5b6a2",
        "amount": "2",
        "verified": 1,
        "operator": "0xf622a6c52c94b500542e2ae6bcad24c53bc5b6a2",
        "possible_spam": false,
        "chain": "POLYGON",
        "token_id": "5",
        "block_number": 44506464,
        "block_timestamp": 1688107346,
        "contract_type": "ERC1155",
        "token_uri": "https://app.thesmurfssociety.com/metadata/public/metadata/cauldron/5",
        "token_domain": "app.thesmurfssociety.com",
        "collection_name": null,
        "image_url": "https://metadata.thesmurfssociety.com/ingredients/nft/5.Forest_Mushrooms.jpg",
        "image_domain": "metadata.thesmurfssociety.com",
        "token_name": "Forest Mushrooms",
        "status": "Receive",
        "possible_phishing": false,
        "fee_details": {
          "coin": "MATIC",
          "gas": 40249,
          "gas_price": "0.000000153160317706",
          "total_fee": "0.006164549627348794"
        },
        "confirmations": 5775855
      }
    ],
    "skipped": 0,
    "total": 1
  },
  "id": null
}