> ## 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.

# Revoke this browser account session

> Revoke this token for its bound origin. Missing token is idempotent. The website proxy also clears its session cookies. Does not delete the hosted account.



## OpenAPI

````yaml /api-reference/vibemarket_openapi.json delete /account/session
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/session:
    delete:
      tags:
        - Accounts
      summary: Revoke this browser account session
      description: >-
        Revoke this token for its bound origin. Missing token is idempotent. The
        website proxy also clears its session cookies. Does not delete the
        hosted account.
      operationId: vm2036
      parameters:
        - name: Origin
          in: header
          required: true
          schema:
            type: string
            enum:
              - https://vibechain.com
              - https://www.vibechain.com
              - https://vibe.market
              - https://www.vibe.market
          description: Must match the approved origin in the signed consent.
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Ok'
        '400':
          description: Invalid input, signature or action.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Origin, wallet or action not authorized.
          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:
        - AccountSession: []
components:
  schemas:
    Ok:
      type: object
      properties:
        ok:
          type: boolean
      required:
        - ok
    Error:
      type: object
      properties:
        error:
          type: string
      required:
        - error
  securitySchemes:
    AccountSession:
      type: http
      scheme: bearer
      bearerFormat: 64-character lowercase hexadecimal token
      description: >-
        Origin-bound account token. Also send Origin and X-VM2-Wallet.
        First-party website proxies use the HttpOnly vm2-session cookie;
        arbitrary third-party origins are not supported.

````