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

# Platform Posture

> Read-only view of the deployment's effective, NON-SECRET configuration —
so an admin can verify posture without shell access, and cite it as evidence.
Secret VALUES are never returned (only 'configured' / 'not'); these settings
are deploy-time env (SAKSHI_*), not runtime-editable here.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/admin/platform
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/admin/platform:
    get:
      tags:
        - access
      summary: Platform Posture
      description: >-
        Read-only view of the deployment's effective, NON-SECRET configuration —

        so an admin can verify posture without shell access, and cite it as
        evidence.

        Secret VALUES are never returned (only 'configured' / 'not'); these
        settings

        are deploy-time env (SAKSHI_*), not runtime-editable here.
      operationId: platform_posture_api_v1_admin_platform_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Platform Posture Api V1 Admin Platform Get
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Ingest API key or OIDC JWT. See /authentication.

````