> ## 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 following page

> Fixed 50-row pages, opaque lowercase-hex before cursor up to 40 characters. Public reads; follow actions use an account action or the scoped compatibility endpoint.



## OpenAPI

````yaml /api-reference/vibemarket_openapi.json get /social/follows/{address}/following
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:
  /social/follows/{address}/following:
    get:
      tags:
        - Community
      summary: Read public following page
      description: >-
        Fixed 50-row pages, opaque lowercase-hex before cursor up to 40
        characters. Public reads; follow actions use an account action or the
        scoped compatibility endpoint.
      operationId: vm2046
      parameters:
        - name: address
          in: path
          required: true
          schema:
            $ref: '#/components/schemas/Address'
        - name: before
          in: query
          required: false
          schema:
            type: string
            pattern: ^[a-f0-9]{0,40}$
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FollowPage'
        '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:
    Address:
      type: string
      pattern: ^0x[0-9a-fA-F]{40}$
    FollowPage:
      type: object
      properties:
        items:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              address:
                $ref: '#/components/schemas/Address'
              at:
                type: integer
            required:
              - id
              - address
              - at
        next:
          type: string
          nullable: true
      required:
        - items
        - next
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error

````