Skip to main content
GET
/
owner
/
{address}
Get BoosterBoxes by owner
curl --request GET \
  --url https://build.wield.xyz/vibe/boosterbox/owner/{address} \
  --header 'API-KEY: <api-key>'
{
  "success": true,
  "boosterBoxes": [
    {
      "tokenId": 123,
      "contractAddress": "<string>",
      "chainId": 123,
      "owner": "<string>",
      "status": "minted",
      "rarity": 2,
      "randomValue": "<string>",
      "tokenSpecificRandomness": "<string>",
      "mintedAt": "2023-11-07T05:31:56Z",
      "openedAt": "2023-11-07T05:31:56Z",
      "latestUpdateTimestamp": "2023-11-07T05:31:56Z",
      "metadata": {
        "name": "<string>",
        "description": "<string>",
        "image": "<string>",
        "external_url": "<string>",
        "attributes": [
          {
            "trait_type": "<string>",
            "value": "<string>",
            "display_type": "<string>"
          }
        ]
      },
      "contractDetails": {
        "gameId": "<string>",
        "tokenAddress": "<string>",
        "tokenName": "<string>",
        "tokenSymbol": "<string>",
        "nftName": "<string>",
        "nftSymbol": "<string>",
        "description": "<string>",
        "imageUrl": "<string>",
        "websiteUrl": "<string>",
        "isGraduated": true,
        "marketCap": "<string>",
        "marketCapUsd": "<string>",
        "preorderProgress": 123,
        "pricePerPack": "<string>",
        "pricePerPackUsd": "<string>",
        "dropContractAddress": "<string>",
        "ownerAddress": "<string>",
        "slug": "<string>",
        "bgColor": "<string>",
        "featuredImageUrl": "<string>",
        "packImage": "<string>",
        "isActive": true,
        "isFeatured": true,
        "isVerified": true,
        "isVerifiedArtist": true,
        "disableFoil": true,
        "disableWear": true,
        "links": {
          "twitter": "<string>",
          "discord": "<string>",
          "website": "<string>"
        },
        "version": "<string>",
        "chainId": 123,
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      }
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "totalPages": 123
  }
}

Headers

API-KEY
string
default:DEMO_REPLACE_WITH_FREE_API_KEY
required

Free API key needed to authorize requests. Get one at: https://docs.wield.xyz/api-reference/vibemarket-intro

Path Parameters

address
string
required

The owner's Ethereum address

Query Parameters

contractAddress
string

Filter by contract address

chainId
integer

Filter by chain ID

status
enum<string>

Filter by status

Available options:
minted,
rarity_assigned,
burned
rarity
integer

Filter by rarity

Required range: 0 <= x <= 4
gameId
string

Filter by game ID

page
integer
default:1

Page number

limit
integer
default:50

Results per page

sortBy
string

Sort field

sortOrder
enum<string>

Sort order

Available options:
asc,
desc
groupBy
enum<string>

Group results

Available options:
contract
includeMetadata
boolean
default:false

Whether to include metadata

includeContractDetails
boolean
default:false

Whether to include contract details from VibeMarketGame

groupCommonRarity
boolean
default:false

Whether to group rarity=0 items by contract (max 100 tokens per group)

Response

200 - application/json

Successful response

success
boolean
boosterBoxes
object[]
pagination
object