Skip to main content

Search collections

Explore all listed collections

Search for

You would have to use the search query with the search target collections, other input parameters are optional.

Graphql Example

Request

query SearchCollections {
search(
input: {target: collections, sort: top, certified: true}
pagination: {page: 1, size: 2}
) {
collections {
collection {
address
avatar
owner_address
name
certified
description
banner
thumbnails
}
stats {
total_minted
total_owners
volume
floor_price
average_price
}
}
hasMore
}
}
With CURL
curl -H 'content-type: application/json' \
-d '{"query":"query Collections($input: SearchRequest!, $pagination: Page) {\n search(input: $input, pagination: $pagination) {\n collections {\n collection {\n address\n avatar\n owner_address\n name\n certified\n description\n banner\n thumbnails\n }\n stats {\n total_minted\n total_owners\n volume\n floor_price\n average_price\n }\n }\n hasMore\n }\n}","variables":{"input":{"category_tags":[],"keywords":"","sort":"top","target":"collections","certified":true},"pagination":{"page":1,"size":2}},"operationName":"Collections"}' \
https://public-api.dev.kalao.io/query
Response
{
"data": {
"search": {
"collections": [
{
"collection": {
"address": "0x86e0858ec802393c660e4d0c83975c937aa0e35c",
"avatar": "https://storage.googleapis.com/beta-kalao/collections/0x86e0858ec802393c660e4d0c83975c937aa0e35c/avatar",
"owner_address": "0xab7b1563c4ca2a002b3f8bff9dc1499cedf8e4f3",
"name": "TEST test",
"certified": true,
"description": "",
"banner": "https://storage.googleapis.com/beta-kalao/collections/0x86e0858ec802393c660e4d0c83975c937aa0e35c/cover",
"thumbnails": [
"https://storage.googleapis.com/beta-kalao/nfts/0x86e0858ec802393c660e4d0c83975c937aa0e35c_4/thumbnail",
"https://storage.googleapis.com/beta-kalao/nfts/0x86e0858ec802393c660e4d0c83975c937aa0e35c/0x86e0858ec802393c660e4d0c83975c937aa0e35c_44/thumbnail",
"https://storage.googleapis.com/beta-kalao/nfts/0x86e0858ec802393c660e4d0c83975c937aa0e35c/0x86e0858ec802393c660e4d0c83975c937aa0e35c_58/thumbnail",
"https://storage.googleapis.com/beta-kalao/nfts/0x86e0858ec802393c660e4d0c83975c937aa0e35c/0x86e0858ec802393c660e4d0c83975c937aa0e35c_54/thumbnail",
"https://storage.googleapis.com/beta-kalao/nfts/0x86e0858ec802393c660e4d0c83975c937aa0e35c/0x86e0858ec802393c660e4d0c83975c937aa0e35c_52/thumbnail"
]
},
"stats": {
"total_minted": "198",
"total_owners": 21,
"volume": 906.1900634765625,
"floor_price": 0,
"average_price": 0
}
},
{
"collection": {
"address": "0xd7e51b2cc213c44d005a9d8bb2dd44f75ce95def",
"avatar": "https://storage.googleapis.com/beta-kalao/nfts/0xd7e51b2cc213c44d005a9d8bb2dd44f75ce95def/85/thumbnail",
"owner_address": "0x1ce8d3c08ccac04bfc5d2ee16c9051dad7627377",
"name": "The Great War",
"certified": true,
"description": "",
"banner": "https://storage.kalao.io/assets-v2/default-banner.png",
"thumbnails": [
"https://storage.googleapis.com/beta-kalao/nfts/0xd7e51b2cc213c44d005a9d8bb2dd44f75ce95def/85/thumbnail",
"https://storage.googleapis.com/beta-kalao/nfts/0xd7e51b2cc213c44d005a9d8bb2dd44f75ce95def/48/thumbnail",
"https://storage.googleapis.com/beta-kalao/nfts/0xd7e51b2cc213c44d005a9d8bb2dd44f75ce95def/79/thumbnail",
"https://storage.googleapis.com/beta-kalao/nfts/0xd7e51b2cc213c44d005a9d8bb2dd44f75ce95def/42/thumbnail",
"https://storage.googleapis.com/beta-kalao/nfts/0xd7e51b2cc213c44d005a9d8bb2dd44f75ce95def/97/thumbnail"
]
},
"stats": {
"total_minted": "100",
"total_owners": 27,
"volume": 347.5387268066406,
"floor_price": 0.9599999785423279,
"average_price": 0
}
},
]
}
}
}