NFTs by creator retriever

[apis/nftport/v0/NFTs by creator retriever]


Returns NFTs created (i.e. minted) by a given account (i.e. wallet) address, using the NFTPort API. Can also return each NFT metadata with include parameter. Supports Ethereum only. Retrieve NFTs created by an account: https://docs.nftport.xyz/docs/nftport/?search=retrieve-nf-ts-created-by-an-account


Keywords: web3, blockchain, crypto, nft, creator, ethereum

Input ports

  • query:

    {
      "account_address": string,
      optional "continuation": string,
      optional "include": ("default" or "metadata" or "contract_information"),
      optional "page_size": number
    }

    Receives the query parameters. Rerefence: https://docs.nftport.xyz/docs/nftport/?search=retrieve-nf-ts-created-by-an-account#Request

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

    Rerefence: https://docs.nftport.xyz/docs/nftport/?search=retrieve-nf-ts-created-by-an-account#Request Default chain value: "ethereum"

Output ports

  • data:

    {
      "response": "OK",
      "nfts": {
        "chain": "ethereum",
        "contract_address": string,
        "token_id": number,
        optional "name": string,
        optional "description": string,
        optional "metadata": any,
        optional "metadata_url": (string or null),
        optional "file_url": (string or null),
        optional "animation_url": (string or null),
        optional "cached_file_url": (string or null),
        optional "cached_animation_url": (string or null),
        optional "owner_addresses": string[]
      }[],
      optional "continuation": string
    }

    Sends the query response. Reference: https://docs.nftport.xyz/docs/nftport/?search=retrieve-nf-ts-created-by-an-account#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