Multi-chain NFT searcher

[apis/nftport/v0/Multi-chain NFT searcher]


Searches NFTs across multiple chains using a text query, specifically the name and description fields from the metadata. Multi-chain NFT search: https://docs.nftport.xyz/docs/nftport/?search=multi-chain-nft-search


Keywords: web3, blockchain, crypto, nft, smart contract, list, polygon, rinkeby, ethereum

Input ports

  • query:

    {
      "text": string,
      optional "filter_by_contract_address": string,
      optional "order_by": ("relevance" or "mint_date"),
      optional "page_number": number,
      optional "page_size": number,
      optional "sort_order": ("desc" or "asc")
    }

    Receives search query. Rerefence: https://docs.nftport.xyz/docs/nftport/?search=multi-chain-nft-search#Request

  • params:

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

    Rerefence: https://docs.nftport.xyz/docs/nftport/?search=multi-chain-nft-search#Request Default chain value: "all"

Output ports

  • data:

    {
      "response": "OK",
      "search_results": [
        {
          "chain": ("polygon" or "ethereum"),
          "contract_address": "string",
          "token_id": string,
          "name": string,
          "description": string,
          optional "mint_date": string
        }
      ]
    }

    Rerefence: https://docs.nftport.xyz/docs/nftport/?search=multi-chain-nft-search#Responses

  • response:

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

    Sends the original response. Reference: https://docs.nftport.xyz/docs/nftport/?search=multi-chain-nft-search#Responses

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

Last updated