Counterfeit NFT finder with token id

[apis/nftport/v0/Counterfeit NFT finder with token id]


Find counterfeit NFTs w/token ID. Retrieves list of duplicate (i.e. counterfeit) NFTs. Requires NFTPort account. https://docs.nftport.xyz/docs/nftport/?search=find-counterfeit-nf-ts-w-token-id


Keywords: web3, blockchain, crypto, nft, smart contract, deploy, product

Input ports

  • query:

    {
      "contract_address": string,
      "token_id": string,
      optional "page_number": number,
      optional "page_size": number,
      optional "threshold": number
    }

    Receives parameters that customize the result NFT list. https://docs.nftport.xyz/docs/nftport/?search=find-counterfeit-nf-ts-w-token-id#request-body

  • params:

    {"api_key": string, optional "chain": ("ethereum" or "polygon")}

    chain default: ethereum; Receives parameters that customize the result NFT list. https://docs.nftport.xyz/docs/nftport/?search=find-counterfeit-nf-ts-w-token-id#request-body

Output ports

  • data:

    {
      "response": "OK",
      "is_similar": boolean,
      "similar_nfts": [
        {
          "contract_address": string,
          "token_id": string,
          "chain": ("ethereum" or "polygon"),
          "similarity": number,
          optional "file_url": string,
          optional "metadata_url": string,
          optional "metadata": {
            "description": string,
            "background_color": string,
            "external_url": string,
            "image": string,
            "name": string,
            "animation_url": string
          },
          optional "mint_date": string
        }
      ]
    }

    https://docs.nftport.xyz/docs/nftport/?search=find-counterfeit-nf-ts-w-token-id#Responses

  • response:

    {"status": number, "headers": {string: any}, "body": string}

    Sends the original response.

  • error: {"error": string, "details": any}

Last updated