Collections
A route that returns all NFT collections or domains listed on your platform
Fetch collections
Query Parameters
Name
Type
Description
Headers
Name
Type
Description
Request Body
Name
Type
Description
[
{
"slug": "bitcoin-frogs",
"name": "Bitcoin Frogs",
"nft_type": "collection",
"domain_type": null, // non-domain NFT collection, set null here
"supply": 1024,
"listed": 60,
"floor_price": 7000000, // in sats
"platform": "idclub"
},
{
"slug": "domain_dot_sats",
"name": "Sat Names",
"nft_type": "domain", // collection, domain
"domain_type": "sats", // if .sats, set 'sats' here
"supply": 100023,
"listed": 6012,
"floor_price": 8000000, // in sats
"platform": "ordzaar"
},
{
"slug": "domain_dot_bitmap",
"name": "Bitmap",
"nft_type": "domain", // collection, domain
"domain_type": "bitmap", // if .bitmap, set 'bitmap' here
"supply": 807002,
"listed": 6012,
"floor_price": 9000000, // in sats
"platform": "ordzaar"
}
]Last updated