> ## 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 platform-wide market statistics

> Returns cached platform totals for the signed-in vibe.market user. This
endpoint requires only Bearer authentication, not an API key, and uses
the public-read IP allowance.




## OpenAPI

````yaml /api-reference/vibemarket_openapi.yml get /platform-stats
openapi: 3.0.3
info:
  title: vibe.market API
  version: 1.0.0
  description: |
    Production API for vibe.market packs, games, collections, creator drafts,
    allowlists, market activity, social features, recovery tools, and analytics.

    Most operations require a caller-specific VibeChain API key in the
    `API-KEY` header. Account-bound writes additionally require a vibe.market
    session token in `Authorization: Bearer <token>`. Public or Bearer-only
    exceptions are marked on the individual operation.
  contact:
    name: VibeChain developer support
    email: gm@vibechain.com
    url: https://docs.vibechain.com/api-reference/vibemarket-intro
servers:
  - url: https://build.vibechain.com/vibe/boosterbox
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Packs
    description: Read pack ownership, state, rarity, and metadata.
  - name: Collections
    description: Read collection holdings, statistics, and activity.
  - name: Games
    description: Discover games and read launch configuration.
  - name: Metadata
    description: Read published metadata and update launched collections.
  - name: Creator drafts
    description: Create, autosave, inspect, confirm, and delete launch drafts.
  - name: Allowlists
    description: Configure draft allowlists and generate Merkle proofs.
  - name: Activity
    description: Read recent packs and recover indexed transaction events.
  - name: Social
    description: Read chat, react to messages, and report collections.
  - name: Analytics
    description: Read price history, leaderboards, and platform totals.
  - name: Utility
    description: Resolve slugs, regions, prices, and processing readiness.
paths:
  /platform-stats:
    get:
      tags:
        - Analytics
      summary: Get platform-wide market statistics
      description: |
        Returns cached platform totals for the signed-in vibe.market user. This
        endpoint requires only Bearer authentication, not an API key, and uses
        the public-read IP allowance.
      operationId: getVibeMarketPlatformStats
      parameters:
        - $ref: '#/components/parameters/ChainId'
      responses:
        '200':
          description: Platform totals
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformStatsResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/PublicRateLimit'
        '500':
          $ref: '#/components/responses/InternalError'
      security:
        - BearerAuth: []
components:
  parameters:
    ChainId:
      in: query
      name: chainId
      description: EVM chain ID. Defaults to Base mainnet.
      schema:
        type: integer
        minimum: 1
        default: 8453
  schemas:
    PlatformStatsResponse:
      type: object
      required:
        - success
        - market
        - volume
        - fees
        - games
        - packs
        - users
        - lastUpdated
      properties:
        success:
          type: boolean
          enum:
            - true
        market:
          type: object
          required:
            - totalMarketCapWei
            - totalMarketCapEth
            - totalMarketCapUsd
          properties:
            totalMarketCapWei:
              $ref: '#/components/schemas/Wei'
            totalMarketCapEth:
              type: number
            totalMarketCapUsd:
              type: number
        volume:
          type: object
          required:
            - totalMintVolumeWei
            - totalMintVolumeEth
            - totalMintVolumeUsd
            - totalUniswapVolumeWei
            - totalUniswapVolumeEth
            - totalUniswapVolumeUsd
            - totalCombinedVolumeWei
            - totalCombinedVolumeEth
            - totalCombinedVolumeUsd
          properties:
            totalMintVolumeWei:
              $ref: '#/components/schemas/Wei'
            totalMintVolumeEth:
              type: number
            totalMintVolumeUsd:
              type: number
            totalUniswapVolumeWei:
              $ref: '#/components/schemas/Wei'
            totalUniswapVolumeEth:
              type: number
            totalUniswapVolumeUsd:
              type: number
            totalCombinedVolumeWei:
              $ref: '#/components/schemas/Wei'
            totalCombinedVolumeEth:
              type: number
            totalCombinedVolumeUsd:
              type: number
        fees:
          type: object
          required:
            - totalCreatorEarningsWei
            - totalCreatorEarningsEth
            - totalCreatorEarningsUsd
            - totalProtocolFeesWei
            - totalProtocolFeesEth
            - totalProtocolFeesUsd
            - totalReferralFeesWei
            - totalReferralFeesEth
            - totalReferralFeesUsd
            - totalUniswapFeesCollectedWei
            - totalUniswapFeesCollectedEth
            - totalUniswapFeesCollectedUsd
          properties:
            totalCreatorEarningsWei:
              $ref: '#/components/schemas/Wei'
            totalCreatorEarningsEth:
              type: number
            totalCreatorEarningsUsd:
              type: number
            totalProtocolFeesWei:
              $ref: '#/components/schemas/Wei'
            totalProtocolFeesEth:
              type: number
            totalProtocolFeesUsd:
              type: number
            totalReferralFeesWei:
              $ref: '#/components/schemas/Wei'
            totalReferralFeesEth:
              type: number
            totalReferralFeesUsd:
              type: number
            totalUniswapFeesCollectedWei:
              $ref: '#/components/schemas/Wei'
            totalUniswapFeesCollectedEth:
              type: number
            totalUniswapFeesCollectedUsd:
              type: number
        games:
          type: object
          required:
            - total
            - graduated
            - verified
          properties:
            total:
              type: integer
            graduated:
              type: integer
            verified:
              type: integer
        packs:
          type: object
          required:
            - minted
            - opened
            - burned
            - unopened
          properties:
            minted:
              type: integer
            opened:
              type: integer
            burned:
              type: integer
            unopened:
              type: integer
        users:
          type: object
          required:
            - creators
            - holders
          properties:
            creators:
              type: integer
            holders:
              type: integer
        lastUpdated:
          type: string
          format: date-time
    Wei:
      type: string
      pattern: ^[0-9]+$
      description: Unsigned integer amount denominated in Wei.
      example: '1000000000000000'
    Error:
      type: object
      required:
        - success
        - message
      properties:
        success:
          type: boolean
          enum:
            - false
        message:
          type: string
        error:
          description: >-
            Optional diagnostic detail. Do not depend on this field being
            present in production.
          oneOf:
            - type: string
            - type: object
              additionalProperties: true
  responses:
    Unauthorized:
      description: Bearer token missing, expired, or invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            success: false
            message: Unauthorized - No token provided
    PublicRateLimit:
      description: Public per-IP rate allowance exhausted
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            success: false
            message: Too many requests! See docs.vibechain.com for more info.
    InternalError:
      description: The server could not complete the operation
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            success: false
            message: Failed to complete request
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: API-KEY
      description: Caller-specific VibeChain API key used for quota and abuse control.
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Signed-in vibe.market session token. The account's linked wallets
        determine creator ownership.

````