Batch NFT transferer

[apis/nftport/v0/Batch NFT transferer]


Transfers a batch of NFTs which have been previously minted with Batch customizable minting to other wallet addresses. Batch transfer minted NFTs (ERC1155 only) https://docs.nftport.xyz/docs/nftport/?search=batch-transfer-minted-nf-ts-erc-1155-only


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

Input ports

  • transfer details:

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

    Receives the data of the NFTs to be trasnfered. Reference: https://docs.nftport.xyz/docs/nftport/?search=batch-transfer-minted-nf-ts-erc-1155-only#request-body

  • params:

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

    Reference: https://docs.nftport.xyz/docs/nftport/?search=batch-transfer-minted-nf-ts-erc-1155-only#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
    }

    Sends transfer details e.g transaction hash which can be used to confirm that the transaction was successful (blockchain transactions can take up to a few minutes depending on how congested the network is). Reference: https://docs.nftport.xyz/docs/nftport/?search=batch-transfer-minted-nf-ts-erc-1155-only#response-body

  • response:

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

    Sends the original response.

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

Last updated