GET
/
collections
List Collections
curl --request GET \
  --url https://createkit.b3.fun/collections
{
  "success": true,
  "total": 123,
  "page": 123,
  "limit": 123,
  "collections": [
    {
      "uuid": "<string>",
      "predictedAddress": "<string>",
      "creator": "<string>",
      "gameOwner": "<string>",
      "gameId": "<string>",
      "chainId": 123,
      "creatorSignature": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "baseURI": "<string>",
      "maxSupply": "<string>",
      "mintPrice": "<string>",
      "startTime": "<string>",
      "endTime": "<string>",
      "tokenStandard": "ERC721",
      "maxPerWallet": "<string>",
      "isWhitelistEnabled": true,
      "image": "<string>",
      "description": "<string>",
      "external_url": "<string>",
      "animation_url": "<string>",
      "attributes": [
        {
          "trait_type": "<string>",
          "value": "<string>"
        }
      ],
      "createdAt": "<string>",
      "whitelistMerkleRoot": "<string>",
      "referrer": "<string>"
    }
  ]
}

Query Parameters

creator
string

Filter by creator wallet address

symbol
string

Filter by collection symbol

referrer
string

Filter by referrer ID

chainId
integer

Filter by blockchain chain ID

gameOwner
string

Filter by game owner wallet address

gameId
string

Filter by game ID

page
integer
default:1

Page number for pagination

Required range: x >= 1
limit
integer
default:10

Number of items per page

Required range: 1 <= x <= 100

Response

200
application/json

Collections retrieved successfully

The response is of type object.