Skip to main content

List all minted NFTs

Returns a paginated list of all minted NFTs for a given collection

Query Parameters
  • collectionId string required

    Unique collection identifier

  • page number

    Possible values: >= 1

    Default value: 1

    Current page number of the results list

  • pageSize number

    Possible values: >= 1 and <= 100

    Default value: 10

    Number of items per page in the results list

Responses

Successful operation


Schema
  • total number

    Total number of items

  • page number

    Current page number of the results list

  • pageSize number

    Number of items per page in the results list

  • results object[]

    Array containing the mints items

  • id string

    Unique mint operation identifier. You can use this to retrieve the status of a given NFT

  • collectionId string

    Unique collection identifier

  • name string

    Name of the NFT token. It defaults to the Collection Name

  • description string

    Text description of the NFT which will be seen on NFT marketplaces. It defaults to the Collection description

  • imageUrl string

    URL that points to the image for this NFT

  • mintToAddress string

    Account address where the NFT will be sent. For example, your Metamask wallet address if you wish to send it to yourself

  • attributes object[]

    Optional list of NFT attributes

  • traitType string

    Trait name

  • value object

    String or numeric value of the attribute

  • maxValue integer

    Maximum value for a numeric value

  • displayType string

    Possible values: [boost_number, boost_percentage, number, date]

    Display type of the attribute (None for string values)

  • createdOn date-time

    The date and time when the object was created.

  • transactionHash string

    Mint transaction hash which is a unique string of characters that is given to every transaction that is added to the blockchain

  • tokenId string

    Unique on chain NFT identifier

  • contractAddress string

    NFT contract address which has been successfully deployed to the blockchain

  • explorerUrl string

    Transaction URL in an external blockchain explorer

Loading...