Skip to main content
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

Pattern: ^0x[a-fA-F0-9]{40}$
symbol
string

Filter by collection symbol

referrer
string

Filter by referrer ID

Pattern: ^[a-z0-9]+$
chainId
integer

Filter by blockchain chain ID

gameOwner
string

Filter by game owner wallet address

Pattern: ^0x[a-fA-F0-9]{40}$
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

Collections retrieved successfully

success
boolean
Example:

true

total
integer

Total number of collections matching filters

page
integer

Current page number

limit
integer

Items per page

collections
object[]

Array of collection data