On this page

latest contributor to this doc

Last Edit:

@smk762

Update NFT

API-v2update_nft

This method scans selected networks to update NFT information stored in the local database. To interact with your NFTs, you must first activate the coin for the network the NFT is on.

See below for which coin to activate for each network:

NetworkCoin
AVALANCHEAVAX
BSCBNB
ETHETH
FANTOMFTM
POLYGONMATIC

These coins can be activated using the enable_eth_with_tokens method.

ParameterTypeRequiredDefaultDescription
chainsarray-List of networks to scan for NFTs. See NftNetworkEnum for allowed values.
komodo_proxyboolean-Indicates whether authentication is required for accessing the proxy URLs.
urlstring-URL link to the Moralis API proxy base URL or equivalent. If komodo_proxy is set to true, you must provide a new Komodo Proxy URL.
url_antispamstring-URL link to the Antispam API proxy base URL or equivalent.

If there are no errors, this request will return an empty response. When updating multiple networks, or wallets with numerous NFTs, this request may take a while to complete.

Update NFT

POST
update_nft
{
  "userpass": "RPC_UserP@SSW0RD",
  "method": "update_nft",
  "mmrpc": "2.0",
  "params": {
    "chains": [
      "BSC",
      "POLYGON"
    ],
    "komodo_proxy": false,
    "url": "https://moralis-proxy.komodo.earth",
    "url_antispam": "https://nft.antispam.dragonhound.info"
  }
}