> ## 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.

# Read one projected V9 market



## OpenAPI

````yaml /api-reference/retardmarket_openapi.yml get /markets/{market}
openapi: 3.0.3
info:
  title: retard.market V9 API
  version: 0.9.0
  description: >
    Projection-backed Robinhood Chain market data, conservative quotes, wallet
    portfolios,

    points, media uploads, and realtime invalidation for retard.market.


    Every endpoint requires a caller-specific VibeChain API key in the

    `API-KEY` header. Create one at

    https://docs.vibechain.com/api-reference/retardmarket-intro.
servers:
  - url: https://build.vibechain.com/api/retard/v9
security:
  - ApiKeyAuth: []
tags:
  - name: Runtime
  - name: Markets
  - name: Portfolio
  - name: Points
  - name: Media
  - name: Realtime
paths:
  /markets/{market}:
    get:
      tags:
        - Markets
      summary: Read one projected V9 market
      operationId: getRetardV9Market
      parameters:
        - $ref: '#/components/parameters/MarketAddress'
      responses:
        '200':
          description: The projected market snapshot
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Market'
        '400':
          $ref: '#/components/responses/InvalidInput'
        '404':
          $ref: '#/components/responses/MarketNotFound'
        '429':
          $ref: '#/components/responses/ApiKeyOrRateLimit'
        '503':
          $ref: '#/components/responses/ProjectionUnavailable'
components:
  parameters:
    MarketAddress:
      in: path
      name: market
      required: true
      description: V9 market contract address
      schema:
        $ref: '#/components/schemas/Address'
  schemas:
    Market:
      type: object
      required:
        - marketId
        - market
        - launchedBy
        - isOfficial
        - question
        - mediaUrl
        - state
        - closesAt
        - totalSeed
        - winnerPotWeth
        - 'yes'
        - 'no'
        - projectedBlock
        - updatedAt
      properties:
        marketId:
          type: integer
          minimum: 0
        market:
          $ref: '#/components/schemas/Address'
        launchedBy:
          $ref: '#/components/schemas/Address'
        isOfficial:
          type: boolean
        question:
          type: string
        mediaUrl:
          type: string
        xUrl:
          type: string
          format: uri
          nullable: true
        websiteUrl:
          type: string
          format: uri
          nullable: true
        state:
          $ref: '#/components/schemas/MarketState'
        closesAt:
          $ref: '#/components/schemas/DateTime'
        totalSeed:
          $ref: '#/components/schemas/Wei'
        winnerPotWeth:
          $ref: '#/components/schemas/Wei'
        'yes':
          $ref: '#/components/schemas/MarketSide'
        'no':
          $ref: '#/components/schemas/MarketSide'
        projectedBlock:
          type: integer
          minimum: 0
        updatedAt:
          $ref: '#/components/schemas/DateTime'
    Address:
      type: string
      pattern: ^0x[0-9a-fA-F]{40}$
      example: '0x0000000000000000000000000000000000000001'
    MarketState:
      type: string
      enum:
        - OPEN
        - AWAITING_SETTLEMENT
        - RESOLVED
    DateTime:
      type: string
      format: date-time
    Wei:
      type: string
      pattern: ^[0-9]+$
      description: Unsigned integer amount in Wei
      example: '50000000000000000'
    MarketSide:
      type: object
      required:
        - side
        - name
        - symbol
        - token
        - pool
        - backingWeth
        - fdvWeth
        - probabilityBps
        - winner
      properties:
        side:
          $ref: '#/components/schemas/SideKey'
        name:
          type: string
        symbol:
          type: string
        token:
          $ref: '#/components/schemas/Address'
        pool:
          $ref: '#/components/schemas/Address'
        backingWeth:
          $ref: '#/components/schemas/Wei'
        fdvWeth:
          $ref: '#/components/schemas/Wei'
        probabilityBps:
          type: integer
          minimum: 0
          maximum: 10000
        winner:
          type: boolean
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
    ApiKeyError:
      allOf:
        - $ref: '#/components/schemas/Error'
        - type: object
          required:
            - docs
          properties:
            error:
              type: string
              enum:
                - API_KEY_REQUIRED_OR_RATE_LIMITED
            docs:
              type: string
              format: uri
    SideKey:
      type: string
      enum:
        - 'YES'
        - 'NO'
  responses:
    InvalidInput:
      description: Invalid request input
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    MarketNotFound:
      description: Market is not present in the official V9 projection
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    ApiKeyOrRateLimit:
      description: API key missing/invalid or the caller allowance is exhausted
      headers:
        Retry-After:
          schema:
            type: integer
          description: Seconds until the current rate window resets
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiKeyError'
    ProjectionUnavailable:
      description: Finalized projection is stale, unavailable, or still catching up
      headers:
        Retry-After:
          schema:
            type: integer
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: API-KEY
      description: Caller-specific VibeChain API key created through `/apikey/create`.

````