> ## 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 invite-only membership

> Existing invite-only session, supplied as X-VM2-Session and matched to address. New account-session clients use /account/access. Website access is not contract authorization.



## OpenAPI

````yaml /api-reference/vibemarket_openapi.json get /access
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:
  /access:
    get:
      tags:
        - Scoped sessions
      summary: Read invite-only membership
      description: >-
        Existing invite-only session, supplied as X-VM2-Session and matched to
        address. New account-session clients use /account/access. Website access
        is not contract authorization.
      operationId: vm2056
      parameters:
        - name: address
          in: query
          required: true
          schema:
            $ref: '#/components/schemas/Address'
          description: Session wallet.
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  member:
                    $ref: '#/components/schemas/AccessMember'
                required:
                  - member
        '401':
          description: Successful response.
          content:
            application/json:
              schema:
                type: object
                properties:
                  member:
                    type: object
                    nullable: true
                required:
                  - member
        '503':
          description: Dependency or capacity unavailable. Retry with backoff.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - AccessSession: []
components:
  schemas:
    Address:
      type: string
      pattern: ^0x[0-9a-fA-F]{40}$
    AccessMember:
      type: object
      properties:
        address:
          type: string
          pattern: ^0x[0-9a-fA-F]{40}$
        code:
          type: string
        referrals:
          type: integer
          format: int64
      required:
        - address
        - code
        - referrals
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
  securitySchemes:
    AccessSession:
      type: apiKey
      in: header
      name: X-VM2-Session
      description: Invite/access-only session; not a Classic API key.

````