> ## 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 website market sources

> Configured sources and enriched version policies. Select runtimeId and launchTarget; do not assume the network is Base. Public, no-store.



## OpenAPI

````yaml /api-reference/vibemarket_openapi.json get /catalog/sources
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:
  /catalog/sources:
    get:
      tags:
        - Discovery
      summary: Discover website market sources
      description: >-
        Configured sources and enriched version policies. Select runtimeId and
        launchTarget; do not assume the network is Base. Public, no-store.
      operationId: vm2002
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Sources'
        '400':
          description: Invalid input, signature, cursor or action.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '503':
          description: Dependency, projection or capacity unavailable. Retry with backoff.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security: []
      servers:
        - url: https://vibechain.com/api/vibemarket2
          description: Website catalog / artwork gateway
components:
  schemas:
    Sources:
      type: object
      properties:
        sources:
          type: array
          items:
            $ref: '#/components/schemas/Source'
      required:
        - sources
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
    Source:
      type: object
      properties:
        id:
          type: string
        chainId:
          type: integer
          format: int64
        rpcUrl:
          type: string
        explorerUrl:
          type: string
        ethUsd:
          type: number
        ethUsdAsOf:
          type: string
          description: ISO/reference timestamp for the quoted ETH/USD observation.
        versions:
          type: array
          items:
            $ref: '#/components/schemas/SourceVersion'
      required:
        - id
        - chainId
        - versions
    SourceVersion:
      type: object
      properties:
        market:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        factory:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        schema:
          type: string
          description: >-
            Website schema identifier; may be an encoded hash rather than the
            backend's human-readable schema name.
        label:
          type: string
        runtimeId:
          type: string
        immutableManifest:
          type: object
          properties:
            hash:
              type: string
              pattern: ^0x[0-9a-fA-F]{64}$
            ethPerPackWei:
              $ref: '#/components/schemas/Uint'
          required:
            - hash
            - ethPerPackWei
        foilOddsBps:
          type: array
          minItems: 6
          maxItems: 6
          items:
            type: integer
            minimum: 0
            maximum: 10000
        collectLimit:
          type: integer
          format: int64
        collectWindowSeconds:
          type: integer
          format: int64
        firstEditionWindowSeconds:
          type: integer
          format: int64
        maxCreatorPrebuy:
          type: integer
          format: int64
        collectHaircutBps:
          type: integer
          format: int64
        launchTarget:
          type: boolean
        prizeFoil:
          type: boolean
      required:
        - market
        - factory
        - schema
        - label
        - runtimeId
    Uint:
      type: string
      pattern: ^[0-9]+$
      description: Exact nonnegative integer; parse as BigInt, not a floating-point number.

````