> ## 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 using chat-only consent

> Existing narrower chat token flow. New first-party clients use POST /account kind follow with followed true or false.



## OpenAPI

````yaml /api-reference/vibemarket_openapi.json put /social/follows/{address}
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}:
    put:
      tags:
        - Scoped sessions
      summary: Follow using chat-only consent
      description: >-
        Existing narrower chat token flow. New first-party clients use POST
        /account kind follow with followed true or false.
      operationId: vm2054
      parameters:
        - name: address
          in: path
          required: true
          schema:
            $ref: '#/components/schemas/Address'
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FollowSummary'
        '400':
          description: Invalid input, signature or action.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Session missing or invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Origin, wallet or action not authorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate/admission limit. Honor Retry-After if present.
          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:
        - ChatSession: []
components:
  schemas:
    Address:
      type: string
      pattern: ^0x[0-9a-fA-F]{40}$
    FollowSummary:
      type: object
      properties:
        address:
          $ref: '#/components/schemas/Address'
        followers:
          type: integer
        following:
          type: integer
        followed:
          type: boolean
      required:
        - address
        - followers
        - following
        - followed
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
  securitySchemes:
    ChatSession:
      type: http
      scheme: bearer
      bearerFormat: Chat-only session token
      description: >-
        Narrower /chat/session token; not the account session and not valid for
        private DMs.

````