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

# Get latest compliance scores



## OpenAPI

````yaml /api-reference/openapi.json get /api/v2/governance/compliance
openapi: 3.1.0
info:
  title: Operark API
  version: 2.0.0
  description: >
    # Operark — The AI Corporate Operating System — Full API Reference


    Complete API documentation covering:

    - **v1 Public API** — RESTful endpoints for external integrations (API key
    auth)

    - **v2 Public API** — Governance, analytics, and agent execution (API key
    auth)

    - **Internal API** — Frontend-facing endpoints (JWT auth)

    - **SCIM 2.0** — User provisioning (RFC 7643/7644)

    - **WebSocket** — Real-time streaming ([WebSocket Protocol
    Docs](/api/docs/websocket))


    ## Authentication


    | API | Auth Method | Header |

    |-----|-------------|--------|

    | v1 Public | API Key | `Authorization: Bearer operark_live_...` |

    | v2 Public | API Key | `Authorization: Bearer <raw_key>` |

    | Internal | JWT | `Authorization: Bearer <jwt_token>` |

    | SCIM | Bearer Token | `Authorization: Bearer <scim_token>` |


    ## Rate Limits


    | Tier | Read | Write | Execute | Admin |

    |------|------|-------|---------|-------|

    | Default | 200/min | 60/min | 20/min | 30/min |

    | Service | 200/min | 60/min | 100/min | 30/min |


    ## Error Format


    All errors follow a standard envelope:

    ```json

    {
      "error": {
        "code": "VALIDATION_ERROR",
        "message": "Human-readable description",
        "details": { ... },
        "requestId": "abc-123"
      }
    }

    ```
  contact:
    name: Operark API Support
    email: api@operark.com
    url: https://operark.com
  license:
    name: Proprietary
    url: https://operark.com/terms
servers:
  - url: https://api.operark.com
    description: Production
  - url: http://localhost:3001
    description: Development
security: []
paths:
  /api/v2/governance/compliance:
    get:
      tags:
        - v2 — Governance
      summary: Get latest compliance scores
      parameters:
        - schema:
            type: string
            enum:
              - eu-ai-act
              - nist-ai-rmf
              - iso-42001
          required: false
          name: framework
          in: query
      responses:
        '200':
          description: Compliance scores
        '401':
          description: Unauthorized
      security:
        - ApiKeyV2: []
components:
  securitySchemes:
    ApiKeyV2:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: 'v2 API key: Authorization: Bearer <raw_key>'

````