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



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/models
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/models:
    get:
      tags:
        - register
      summary: List Models
      operationId: list_models_api_v1_models_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ModelOut'
                type: array
                title: Response List Models Api V1 Models Get
components:
  schemas:
    ModelOut:
      properties:
        id:
          type: string
          title: Id
        tenant_id:
          type: string
          title: Tenant Id
        name:
          type: string
          title: Name
        provider:
          anyOf:
            - type: string
            - type: 'null'
          title: Provider
        version:
          type: string
          title: Version
        model_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Model Type
        vendor_flag:
          type: boolean
          title: Vendor Flag
        validation_status:
          type: string
          title: Validation Status
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - tenant_id
        - name
        - provider
        - version
        - model_type
        - vendor_flag
        - validation_status
        - created_at
      title: ModelOut
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Ingest API key or OIDC JWT. See /authentication.

````