Customizable batch NFT minter

[apis/nftport/v0/Customizable batch NFT minter]


Batch mints NFTs to your previously deployed ERC1155 NFT product contract. This minting consists of multiple steps and enables you to customize the whole minting flow for your exact needs. Batch minting allows you to create multiple NFTs with one API call and create more than one of the same token. Batch customizable minting (ERC1155): https://docs.nftport.xyz/docs/nftport/?search=batch-customizable-minting-erc-1155


Keywords: web3, blockchain, crypto, nft, product, dynamic, mint, batch, customisable, polygon, rinkeby

Input ports

  • minting details:

    {
      "contract_address": string,
      "tokens": {
        "mint_to_address": string,
        "metadata_uri": string,
        "token_id": string,
        "quantity": number
      }[]
    }

    Receives the details of the minting. Reference: https://docs.nftport.xyz/docs/nftport/?search=batch-customizable-minting-erc-1155#request-body

  • params:

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

    Reference: https://docs.nftport.xyz/docs/nftport/?search=batch-customizable-minting-erc-1155#request-body Default chain value: "polygon"

Output ports

  • data:

    {
      "response": "OK",
      "chain": ("polygon" or "rinkeby"),
      "contract_address": string,
      "transaction_hash": string,
      "transaction_external_url": string,
      "tokens": {
        "mint_to_address": string,
        "token_id": string,
        "metadata_uri": string,
        "quantity": number
      }[]
    }

    Sends minting details e.g contract address and the transaction hash which can be used in Return minted NFT to receive the token ID and confirm that the minting was successful (minting can take up to a few minutes depending on how congested the network is). Reference: https://docs.nftport.xyz/docs/nftport/?search=batch-customizable-minting-erc-1155#request-body

  • response:

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

    Sends the original response.

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

Last updated