Minted NFT details retriever

[apis/nftport/v0/Minted NFT details retriever]


Returns the details of a minted NFT, using the NFTPort API. You need to provide transaction_hash which is returned from Easy minting w/URL, Easy minting w/file upload or Customizable minting. Minting is not instantaneous because blockchains take time to verify transactions. Thus, you can poll this node every 5 seconds until you get a response. Supports Polygon only. Retrieve a minted NFT: https://docs.nftport.xyz/docs/nftport/?search=retrieve-a-minted-nft


Keywords: web3, blockchain, crypto, nft, mint, status, polygon

Input ports

  • transaction hash: string

    Receives the NFT transaction hash

  • params: {"api_key": string, optional "chain": "ethereum"}

    Receives the query parameters. Rerefence: https://docs.nftport.xyz/docs/nftport/?search=retrieve-all-transactions#Request Default chain value: "ethereum"

Output ports

  • data:

    {
      "response": "OK",
      "chain": ("polygon" or "rinkeby"),
      "contract_address": string,
      "token_id": string
    }

    Sends the query response. Reference: https://docs.nftport.xyz/docs/nftport/?search=retrieve-all-transactions#Responses

  • response:

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

    Sends the original response.

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

    Sends the error, if any

Last updated