Counterfeit NFT finder with url

[apis/nftport/v0/Counterfeit NFT finder with url]


Analyzes the input image passed with url and returns duplicates (i.e. counterfeits) against it. Requires NFTPort account. Find counterfeit NFTs w/url https://docs.nftport.xyz/docs/nftport/?search=find-counterfeit-nf-ts-w-url


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

Input ports

  • query:

    {
      "url": string,
      optional "page_number": number,
      optional "page_size": number,
      optional "threshold": number,
      optional "filter_out_contract_address": string
    }

    URL that points to the image that returns a Content-Length and Content-Type header or contains the file extension. Supports .JPG, .JPEG, .PNG, .WebP, .PPM, .BMP, .PGM, .TIF, .TIFF file formats.

  • params: {"api_key": string}

    https://docs.nftport.xyz/docs/nftport/?search=find-counterfeit-nf-ts-w-url#Request

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-url#Responses

  • response:

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

    Sends the original response.

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

Last updated