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

# List Reviews



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/bound/reviews
openapi: 3.1.0
info:
  title: Sakshi — Agent Governance API
  description: >-
    Registry (KYA), decision flight recorder, bounded autonomy, evidence packs,
    fairness screens. Auth: bearer ingest keys create evidence; OIDC JWTs with
    governance roles mutate state.
  version: 0.1.0
servers:
  - url: https://demo.rotavision.com
    description: Public demo (read-only, synthetic data)
  - url: https://{host}
    description: Your Sakshi deployment (single-tenant, in your environment)
    variables:
      host:
        default: sakshi.your-company.internal
security:
  - bearerAuth: []
paths:
  /api/v1/bound/reviews:
    get:
      tags:
        - bound
      summary: List Reviews
      operationId: list_reviews_api_v1_bound_reviews_get
      parameters:
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            default: pending
            title: Status
        - name: kind
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Kind
        - name: agent_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Agent Id
        - name: q
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                maxLength: 200
              - type: 'null'
            description: client_ref prefix (console global search)
            title: Q
          description: client_ref prefix (console global search)
        - name: assigned_to_me
          in: query
          required: false
          schema:
            type: boolean
            default: false
            title: Assigned To Me
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            default: 100
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ReviewOut'
                title: Response List Reviews Api V1 Bound Reviews Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ReviewOut:
      properties:
        id:
          type: string
          title: Id
        agent_id:
          type: string
          title: Agent Id
        evaluation_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Evaluation Id
        escalated_from:
          anyOf:
            - type: string
            - type: 'null'
          title: Escalated From
        client_ref:
          anyOf:
            - type: string
            - type: 'null'
          title: Client Ref
        org_unit:
          anyOf:
            - type: string
            - type: 'null'
          title: Org Unit
        escalate_to_kind:
          anyOf:
            - type: string
            - type: 'null'
          title: Escalate To Kind
        escalate_to:
          anyOf:
            - type: string
            - type: 'null'
          title: Escalate To
        kind:
          type: string
          title: Kind
        status:
          type: string
          title: Status
        claimed_by:
          anyOf:
            - type: string
            - type: 'null'
          title: Claimed By
        claimed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Claimed At
        resolved_by:
          anyOf:
            - type: string
            - type: 'null'
          title: Resolved By
        resolved_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Resolved At
        note:
          anyOf:
            - type: string
            - type: 'null'
          title: Note
        corrected_action:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Corrected Action
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - agent_id
        - evaluation_id
        - escalated_from
        - client_ref
        - org_unit
        - escalate_to_kind
        - escalate_to
        - kind
        - status
        - claimed_by
        - claimed_at
        - resolved_by
        - resolved_at
        - note
        - corrected_action
        - created_at
      title: ReviewOut
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Ingest API key or OIDC JWT. See /authentication.

````