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
- 200
Successful operation
- application/json
- Schema
- Example (from schema)
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 stringUnique mint operation identifier. You can use this to retrieve the status of a given NFT
collectionId stringUnique collection identifier
name stringName of the NFT token. It defaults to the Collection Name
description stringText description of the NFT which will be seen on NFT marketplaces. It defaults to the Collection description
imageUrl stringURL that points to the image for this NFT
mintToAddress stringAccount 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 stringTrait name
value objectString or numeric value of the attribute
maxValue integerMaximum value for a numeric value
displayType stringPossible values: [
boost_number
,boost_percentage
,number
,date
]Display type of the attribute (None for string values)
createdOn date-timeThe date and time when the object was created.
transactionHash stringMint transaction hash which is a unique string of characters that is given to every transaction that is added to the blockchain
tokenId stringUnique on chain NFT identifier
contractAddress stringNFT contract address which has been successfully deployed to the blockchain
explorerUrl stringTransaction URL in an external blockchain explorer
{
"total": 0,
"page": 0,
"pageSize": 0,
"results": [
{
"id": "string",
"collectionId": "string",
"name": "Toket unique NFT",
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
"imageUrl": "https://uploads-ssl.webflow.com/6298d274fbbdfd8453c05a51/6298d40abbabad708c22e33b_toket-g2%20(2)-p-500.png",
"mintToAddress": "0x0000000000000000000000000000000000000000",
"attributes": [
{
"traitType": "Level",
"value": 45,
"maxValue": 0,
"displayType": "boost_number"
}
],
"createdOn": "2023-03-02T16:02:09.821Z",
"transactionHash": "string",
"tokenId": "string",
"contractAddress": "0x0000000000000000000000000000000000000000",
"explorerUrl": "string"
}
]
}