Deployed product contracts lister

[apis/nftport/v0/Deployed product contracts lister]


Lists smart contracts deployed with a specific API key. List all your deployed contracts: https://docs.nftport.xyz/docs/nftport/?search=list-all-your-deployed-contracts


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

Input ports

  • params: {"api_key": string}

    Reference: https://docs.nftport.xyz/docs/nftport/?search=list-all-your-deployed-contracts#Request

Output ports

  • data:

    {
      "response": "OK",
      "contracts": {
        "name": string,
        "symbol": string,
        "transaction_hash": string,
        "chain": ("polygon" or "rinkeby"),
        "address": string,
        "owner_address": string,
        "creation_date": string,
        "metadata_frozen": boolean,
        "tokens_burnable": boolean,
        "tokens_transferable": boolean,
        "type": ("erc721" or "erc1155"),
        optional "royalties_share": number,
        optional "royalties_address": string
      }[]
    }

    Sends details of the deployed contracts. Reference: https://docs.nftport.xyz/docs/nftport/?search=list-all-your-deployed-contracts#response-body

  • response:

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

    Sends the original response.

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

Last updated