Minted NFT lister

[apis/nftport/v0/Minted NFT lister]


List all your minted NFTs with a specific API key. List all your minted NFTs: https://docs.nftport.xyz/docs/nftport/?search=list-all-your-minted-nf-ts Default chain value: "polygon"


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

Input ports

  • query:

    {optional "page_number": number, optional "page_size": number}
  • params:

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

    Recives query params. Rerefence: https://docs.nftport.xyz/docs/nftport/?search=list-all-your-minted-nf-ts#Request

Output ports

  • data:

    {
      "response": "OK",
      "total": number,
      "minted_nfts": [
        {
          "chain": ("polygon" or "rinkeby"),
          "transaction_hash": string,
          "contract_name": "string",
          "contract_address": string,
          "type": "string",
          optional "token_id": "string",
          "mint_to_address": "string",
          optional "metadata_uri": "string",
          "quantity": string,
          "num_burned_transferred_amount": number,
          "metadata_frozen": boolean,
          "mint_date": string
        }
      ]
    }

    Sends list of all the NFTs minted by you. Rerefence: https://docs.nftport.xyz/docs/nftport/?search=list-all-your-minted-nf-ts#Responses

  • response:

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

    Sends the original response.

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

Last updated