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

# Follow board-art image redirect

> Board-art image redirect with pack-art fallback. This compatibility image route is not proof of card ownership or reveal state.



## OpenAPI

````yaml /api-reference/vibemarket_openapi.json get /runtime/{version}/art/{hash}/{card}
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/{version}/art/{hash}/{card}:
    get:
      tags:
        - Artwork
      summary: Follow board-art image redirect
      description: >-
        Board-art image redirect with pack-art fallback. This compatibility
        image route is not proof of card ownership or reveal state.
      operationId: vm2031
      parameters:
        - name: version
          in: path
          required: true
          schema:
            type: string
          description: >-
            Runtime id from /runtime/versions or catalog/sources; never infer
            the newest revision from its name.
        - name: hash
          in: path
          required: true
          schema:
            type: string
            pattern: ^[a-f0-9]{64}$
        - name: card
          in: path
          required: true
          schema:
            type: string
            pattern: ^[0-9]{1,78}$
      responses:
        '302':
          description: Follow the Location header.
          headers:
            Location:
              schema:
                type: string
              description: Public image URL.
        '404':
          description: Artwork unavailable or invalid identity.
      security: []

````