> ## 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 indexed sealed

> Raw sealed index. owner is required. Returns resource payloads in items, not database row wrappers. Chain quantities are decimal strings. Owner-scoped responses use private caching; cursors are resource/filter-specific.



## OpenAPI

````yaml /api-reference/vibemarket_openapi.json get /runtime/{version}/sealed
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}/sealed:
    get:
      tags:
        - Indexed market
      summary: Read indexed sealed
      description: >-
        Raw sealed index. owner is required. Returns resource payloads in items,
        not database row wrappers. Chain quantities are decimal strings.
        Owner-scoped responses use private caching; cursors are
        resource/filter-specific.
      operationId: vm2008
      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: dropId
          in: query
          required: false
          schema:
            type: string
            pattern: ^[1-9][0-9]{0,77}$
          description: Drop ID in this runtime.
        - name: owner
          in: query
          required: true
          schema:
            $ref: '#/components/schemas/Address'
          description: Wallet in this runtime.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
        - name: before
          in: query
          required: false
          schema:
            type: string
            maxLength: 500
          description: Opaque continuation cursor from this same resource and filter.
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IndexPage'
        '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'
        '503':
          description: Dependency, projection or capacity unavailable. Retry with backoff.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security: []
components:
  schemas:
    Address:
      type: string
      pattern: ^0x[0-9a-fA-F]{40}$
    IndexPage:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/IndexRow'
        next:
          type: string
          nullable: true
          description: Opaque next-page cursor. Null ends pagination.
        head:
          $ref: '#/components/schemas/Head'
      required:
        - items
        - next
        - head
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
    IndexRow:
      type: object
      properties: {}
      description: >-
        Resource-specific indexed payload. Raw IDs and blockchain quantities may
        be decimal strings; additional properties are retained.
    Head:
      type: object
      properties:
        scope:
          type: string
        nextBlock:
          type: integer
        blockHash:
          type: string
          nullable: true
        revision:
          type: integer
        updatedAt:
          type: integer
        failure:
          type: string
          nullable: true
        observedHead:
          type: integer
        observedAt:
          type: integer
        webhookAudit:
          type: object
          nullable: true
      required:
        - scope
        - nextBlock
        - blockHash
        - revision
        - updatedAt
        - failure

````