> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rhinestone.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Read the canonical verification state for the session customer

> Browser route. Returns the normalized verification state for the compliance customer named by the session bearer. Scoped to that one customer — a token can never read another customer, project, or bound account.



## OpenAPI

````yaml https://raw.githubusercontent.com/rhinestonewtf/openapi/refs/heads/main/deposit-service.json get /compliance/status
openapi: 3.1.0
info:
  title: Deposit Service API
  version: 1.0.0
  description: >-
    Cross-chain deposit processing service with automatic token bridging and gas
    sponsorship
servers:
  - url: https://v1.orchestrator.rhinestone.dev/deposit-processor
security: []
paths:
  /compliance/status:
    get:
      tags:
        - Compliance
      summary: Read the canonical verification state for the session customer
      description: >-
        Browser route. Returns the normalized verification state for the
        compliance customer named by the session bearer. Scoped to that one
        customer — a token can never read another customer, project, or bound
        account.
      parameters:
        - schema:
            type: string
            description: Bearer <scoped compliance session token>
            example: Bearer eyJhbGciOi...
          required: true
          description: Bearer <scoped compliance session token>
          name: authorization
          in: header
      responses:
        '200':
          description: Normalized verification state
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ComplianceStatusResponse'
        '401':
          description: Missing, malformed, or expired session token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Session does not match the resolved customer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Failed to read compliance status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ComplianceStatusResponse:
      type: object
      properties:
        status:
          $ref: '#/components/schemas/ComplianceVerificationStatus'
        updatedAt:
          type: string
          description: ISO-8601 timestamp of the last status change.
      required:
        - status
        - updatedAt
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        details:
          type: array
          items:
            type: object
            properties:
              message:
                type: string
              path:
                type: array
                items:
                  anyOf:
                    - type: string
                    - type: number
              code:
                type: string
            required:
              - message
      required:
        - error
    ComplianceVerificationStatus:
      type: string
      enum:
        - not_started

````