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

# Check V9 HTTP readiness



## OpenAPI

````yaml /api-reference/retardmarket_openapi.yml get /health
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:
  /health:
    get:
      tags:
        - Runtime
      summary: Check V9 HTTP readiness
      operationId: getRetardV9Health
      responses:
        '200':
          description: Runtime, public reads, and the projection reader are ready
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Health'
        '429':
          $ref: '#/components/responses/ApiKeyOrRateLimit'
        '503':
          description: One or more readiness checks failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Health'
components:
  schemas:
    Health:
      type: object
      required:
        - ok
        - scope
        - releaseId
        - chainId
        - settlementAutomationConfigured
        - checks
        - reason
      properties:
        ok:
          type: boolean
        scope:
          type: string
          enum:
            - HTTP_CONFIG_READINESS
        releaseId:
          type: string
        chainId:
          type: integer
        settlementAutomationConfigured:
          type: boolean
        checks:
          type: object
          required:
            - runtimeEnabled
            - publicReadsEnabled
            - readerConfigured
          properties:
            runtimeEnabled:
              type: boolean
            publicReadsEnabled:
              type: boolean
            readerConfigured:
              type: boolean
        reason:
          type: string
          nullable: true
    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
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
  responses:
    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'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: API-KEY
      description: Caller-specific VibeChain API key created through `/apikey/create`.

````