List all deployed collections
Returns a paginated list of all deployed collections
Query Parameters
- 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 collections items
id stringUnique collection identifier. You will need this in order to mint NFTs
name stringName of the NFT collection
description stringText description of the NFT which will be seen on NFT marketplaces
symbol stringSymbol of the NFT collection
ownerAddress stringThe contract owner address. If you wish to own the contract, then set it as your wallet address
maxSupply integerPossible values:
>= 1
The maximum number of NFTs that can be minted in this collection. If not set the collection will have unlimited tokens
royaltiesShare integerPossible values:
<= 10000
Secondary market royalty rate in basis points (100 bps = 1%)
royaltiesAddress stringAddress for royalties. This defaults to ownerAddress
chain stringPossible values: [
polygon
]Default value:
polygon
The blockchain where the Collection smart contract is deployed
createdOn date-timeThe date and time when the object was created.
transactionHash stringDeploy transaction hash which is a unique string of characters that is given to every transaction that is added to the blockchain
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",
"name": "Toket NFT Collection",
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
"symbol": "NFT",
"ownerAddress": "0x0000000000000000000000000000000000000000",
"maxSupply": 1000,
"royaltiesShare": 0,
"royaltiesAddress": "0x0000000000000000000000000000000000000000",
"chain": "polygon",
"createdOn": "2023-03-02T16:02:09.821Z",
"transactionHash": "string",
"contractAddress": "0x0000000000000000000000000000000000000000",
"explorerUrl": "string"
}
]
}