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

# Discover runtime graphs

> Returns deployed runtime identities and exact contract addresses. Retired or older graphs can remain readable for existing assets. Use catalog/sources launchTarget for new launches.



## OpenAPI

````yaml /api-reference/vibemarket_openapi.json get /runtime/versions
openapi: 3.0.3
info:
  title: vibe.market API
  version: '2026-09-10'
  description: >-
    Consumer HTTP API for the current vibe.market at
    https://vibechain.com/market. This is an experimental protocol; review
    https://vibechain.com/terms. Public reads do not require Classic API keys.
    Discover runtime graphs rather than hardcoding a revision. The
    /api/vibemarket2 namespace is intentional. Operational provider webhooks and
    operator-only controls are excluded.
  termsOfService: https://vibechain.com/terms
servers:
  - url: https://build.vibechain.com/api/vibemarket2
    description: Current-market backend
security: []
tags:
  - name: Discovery
  - name: Indexed market
  - name: Board
  - name: Live updates
  - name: Creators
  - name: Artwork
  - name: Accounts
  - name: Community
  - name: Private messages
  - name: Scoped sessions
paths:
  /runtime/versions:
    get:
      tags:
        - Discovery
      summary: Discover runtime graphs
      description: >-
        Returns deployed runtime identities and exact contract addresses.
        Retired or older graphs can remain readable for existing assets. Use
        catalog/sources launchTarget for new launches.
      operationId: vm2001
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RuntimeRegistry'
      security: []
components:
  schemas:
    RuntimeRegistry:
      type: object
      properties:
        versions:
          type: array
          items:
            $ref: '#/components/schemas/Runtime'
      required:
        - versions
    Runtime:
      type: object
      properties:
        id:
          type: string
        chainId:
          type: integer
          format: int64
        schema:
          type: string
        market:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        factory:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        pool:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        poolManager:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        pot:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        entropy:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        batcher:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        weth:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        startBlock:
          type: integer
          format: int64
        retired:
          type: boolean
        authority:
          $ref: '#/components/schemas/Address'
      required:
        - id
        - chainId
        - schema
        - market
        - factory
        - retired
    Address:
      type: string
      pattern: ^0x[0-9a-fA-F]{40}$

````