> ## 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: >-
    Rhinestone Deposits API: accept deposits from any chain, asset or payment
    method, and settle them as one token on one chain.
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.
        verification:
          type: object
          properties:
            actionsRequired:
              type: array
              items:
                type: string
              description: >-
                Outstanding customer actions; resume hosted verification to
                complete them.
            entities:
              type: array
              items:
                type: object
                properties:
                  entity:
                    type: string
                    description: Provider jurisdiction, e.g. Us, Lt.
                  status:
                    type: string
                    enum:
                      - Pending
                      - Approved
                      - Declined
                  model:
                    type: string
                  rejectType:
                    type: string
                    enum:
                      - Final
                      - Retry
                    description: >-
                      Present on a declined entity; Retry means the customer can
                      resubmit.
                required:
                  - entity
                  - status
                  - model
            agreements:
              type: array
              items:
                type: object
                properties:
                  name:
                    type: string
                  version:
                    type: integer
                  accepted:
                    type: boolean
                required:
                  - name
                  - version
                  - accepted
          required:
            - actionsRequired
            - entities
            - agreements
      required:
        - status
        - updatedAt
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        code:
          type: string
          description: >-
            Deposit error code (e.g. `TOKEN-3`) when the refusal is one a
            deposit would also receive.
        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
        - pending
        - approved
        - declined

````