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

# Resolve a canonical market slug

> Resolves a website pack slug to a graph-qualified market and launch transaction. A name alone does not identify a deployment. 409 indicates an ambiguous slug; 503 means projection/graph unavailable.



## OpenAPI

````yaml /api-reference/vibemarket_openapi.json get /runtime/pack-slugs/{slug}
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/pack-slugs/{slug}:
    get:
      tags:
        - Discovery
      summary: Resolve a canonical market slug
      description: >-
        Resolves a website pack slug to a graph-qualified market and launch
        transaction. A name alone does not identify a deployment. 409 indicates
        an ambiguous slug; 503 means projection/graph unavailable.
      operationId: vm2004
      parameters:
        - name: slug
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SlugResolution'
        '400':
          description: Invalid input, signature, cursor or action.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Resource not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Conflicting state or retired runtime.
          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: []
components:
  schemas:
    SlugResolution:
      type: object
      properties:
        canonicalSlug:
          type: string
        launchTx:
          type: string
        graph:
          $ref: '#/components/schemas/Graph'
        market:
          $ref: '#/components/schemas/MarketRow'
      required:
        - canonicalSlug
        - launchTx
        - graph
        - market
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
    Graph:
      type: object
      properties:
        id:
          type: string
        chainId:
          type: integer
          format: int64
        market:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        factory:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        schema:
          type: string
      required:
        - id
        - chainId
        - market
        - factory
        - schema
    MarketRow:
      type: object
      properties:
        id:
          type: string
          pattern: ^[0-9]+$
          description: >-
            Exact nonnegative integer; parse as BigInt, not a floating-point
            number.
        name:
          type: string
        symbol:
          type: string
        creator:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        token:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        createdTx:
          type: string
        canonicalSlug:
          type: string
      required:
        - id
      description: >-
        Raw indexed market payload. Monetary quantities use decimal strings;
        additional graph-specific fields may evolve.

````