> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vibechain.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get metadata for a token



## OpenAPI

````yaml /api-reference/vibemarket_openapi.yml get /metadata/{slug}/{tokenId}
openapi: 3.0.0
info:
  title: vibe.market Boosterbox API
  version: 1.0.0
  description: >
    API for managing boosterboxes, games (packs), and metadata on vibe.market.


    **Get your free API key at:**
    https://docs.vibechain.com/api-reference/vibemarket-intro


    **Default Chain:** Base (chainId: 8453)
servers:
  - url: https://build.vibechain.com/vibe/boosterbox
security: []
paths:
  /metadata/{slug}/{tokenId}:
    get:
      summary: Get metadata for a token
      parameters:
        - $ref: '#/components/parameters/API_KEY'
        - in: path
          name: slug
          required: true
          schema:
            type: string
          description: The game slug
        - in: path
          name: tokenId
          required: true
          schema:
            type: integer
          description: The token ID
      responses:
        '200':
          description: Token metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenMetadata'
components:
  parameters:
    API_KEY:
      in: header
      name: API-KEY
      description: >-
        Free API key needed to authorize requests. Get one at:
        https://docs.vibechain.com/api-reference/vibemarket-intro
      required: true
      schema:
        type: string
        default: DEMO_REPLACE_WITH_FREE_API_KEY
  schemas:
    TokenMetadata:
      type: object
      description: OpenSea-compatible token metadata
      properties:
        name:
          type: string
          description: Card name
        description:
          type: string
          description: Card description
        image:
          type: string
          description: Card image URL
        external_url:
          type: string
          description: External URL for the card
        attributes:
          type: array
          description: Card attributes/traits
          items:
            type: object
            properties:
              trait_type:
                type: string
                description: Attribute name (e.g., "Rarity", "Foil", "Wear")
              value:
                type: string
                description: Attribute value
              display_type:
                type: string
                description: Display type for numeric values

````