> ## 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 public moderation visibility

> Public endpoint: no account session required on the direct backend. Each supplied query is comma-separated IDs and <=20000 characters. Account IDs are wallet addresses, pack IDs use the market identity format, message IDs are lowercase hex up to 40 characters. Returns hidden {kind,id} targets.



## OpenAPI

````yaml /api-reference/vibemarket_openapi.json get /account/visibility
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:
  /account/visibility:
    get:
      tags:
        - Accounts
      summary: Read public moderation visibility
      description: >-
        Public endpoint: no account session required on the direct backend. Each
        supplied query is comma-separated IDs and <=20000 characters. Account
        IDs are wallet addresses, pack IDs use the market identity format,
        message IDs are lowercase hex up to 40 characters. Returns hidden
        {kind,id} targets.
      operationId: vm2040
      parameters:
        - name: account
          in: query
          required: false
          schema:
            type: string
            maxLength: 20000
          description: Comma-separated account IDs.
        - name: pack
          in: query
          required: false
          schema:
            type: string
            maxLength: 20000
          description: Comma-separated pack IDs.
        - name: message
          in: query
          required: false
          schema:
            type: string
            maxLength: 20000
          description: Comma-separated message IDs.
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  hidden:
                    type: array
                    items:
                      $ref: '#/components/schemas/SafetyTarget'
                required:
                  - hidden
        '400':
          description: Invalid input, signature or action.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '503':
          description: Dependency or capacity unavailable. Retry with backoff.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security: []
components:
  schemas:
    SafetyTarget:
      type: object
      properties:
        kind:
          type: string
          enum:
            - account
            - pack
            - message
        id:
          type: string
          maxLength: 200
      required:
        - kind
        - id
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error

````