> ## 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 the attested V9 runtime

> Read this first and fail closed unless `enabled` and `publicEnabled` are both true.



## OpenAPI

````yaml /api-reference/retardmarket_openapi.yml get /runtime
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:
  /runtime:
    get:
      tags:
        - Runtime
      summary: Read the attested V9 runtime
      description: >-
        Read this first and fail closed unless `enabled` and `publicEnabled` are
        both true.
      operationId: getRetardV9Runtime
      responses:
        '200':
          description: Current checked-in and attested runtime identity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Runtime'
        '429':
          $ref: '#/components/responses/ApiKeyOrRateLimit'
components:
  schemas:
    Runtime:
      type: object
      required:
        - releaseId
        - enabled
        - publicEnabled
        - keeperEnabled
        - chainId
        - launcher
        - marketImplementation
        - owner
        - weth
        - uniswapV3Factory
        - deploymentBlock
        - epochSeconds
        - minimumTotalSeedWei
        - launchers
        - poolFee
        - tradeFeeBps
        - settlementRakeBps
      properties:
        releaseId:
          type: string
          enum:
            - retard-market-v0.9.0
        enabled:
          type: boolean
        publicEnabled:
          type: boolean
        keeperEnabled:
          type: boolean
        chainId:
          type: integer
          example: 4663
        launcher:
          allOf:
            - $ref: '#/components/schemas/Address'
          nullable: true
        marketImplementation:
          allOf:
            - $ref: '#/components/schemas/Address'
          nullable: true
        owner:
          allOf:
            - $ref: '#/components/schemas/Address'
          nullable: true
        weth:
          allOf:
            - $ref: '#/components/schemas/Address'
          nullable: true
        uniswapV3Factory:
          allOf:
            - $ref: '#/components/schemas/Address'
          nullable: true
        deploymentBlock:
          type: integer
          minimum: 0
          nullable: true
        epochSeconds:
          type: integer
          minimum: 1
        minimumTotalSeedWei:
          $ref: '#/components/schemas/Wei'
        launchers:
          type: array
          items:
            $ref: '#/components/schemas/LauncherRuntime'
        poolFee:
          type: integer
        tradeFeeBps:
          type: integer
        settlementRakeBps:
          type: integer
    Address:
      type: string
      pattern: ^0x[0-9a-fA-F]{40}$
      example: '0x0000000000000000000000000000000000000001'
    Wei:
      type: string
      pattern: ^[0-9]+$
      description: Unsigned integer amount in Wei
      example: '50000000000000000'
    LauncherRuntime:
      type: object
      required:
        - launcher
        - deploymentBlock
        - epochSeconds
        - minimumTotalSeedWei
      properties:
        launcher:
          $ref: '#/components/schemas/Address'
        deploymentBlock:
          type: integer
          minimum: 0
        epochSeconds:
          type: integer
          minimum: 1
        minimumTotalSeedWei:
          $ref: '#/components/schemas/Wei'
    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`.

````