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

# List risk rules

> List risk rules



## OpenAPI

````yaml openapi.oms.en.json GET /api/v1/oms/risk/rules
openapi: 3.0.3
info:
  title: VOS OMS Public API
  version: 1.0.0
  description: >-
    Public REST API surface for Vero OMS. Authentication requests use
    platform.verolabs.co. REST API requests use api-oms.verolabs.co.
servers:
  - url: https://platform.verolabs.co
    description: Authentication host
  - url: https://api-oms.verolabs.co
    description: REST API host
security: []
tags:
  - name: Authentication
    description: Account authentication and password recovery.
  - name: Trading
    description: Order entry, quote, IOI, and trading activity APIs.
  - name: Portfolio & Risk
    description: Accounts, holdings, mappings, and risk-rule read APIs.
  - name: Administration
    description: Permissions, groups, workflow, reference data, and audit APIs.
  - name: System & Diagnostics
    description: Health and latency endpoints.
paths:
  /api/v1/oms/risk/rules:
    get:
      tags:
        - Portfolio & Risk
      summary: List risk rules
      description: |-
        Returns active risk rules from the live read model.

        Requires `Authorization: Bearer <jwt>` from `POST /api/auth/login`.
      operationId: get_api_v1_oms_risk_rules
      responses:
        '200':
          description: Risk rules
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RuleView'
        '503':
          $ref: '#/components/responses/OmsError'
      security:
        - bearerAuth: []
      servers:
        - url: https://api-oms.verolabs.co
components:
  schemas:
    RuleView:
      type: object
      properties:
        kind:
          type: string
          description: Reference, rule, or request kind.
        scope:
          type: string
          description: Rule scope.
        target:
          type: string
          description: Rule target.
        value:
          type: number
          format: double
          description: Value associated with the record.
      description: RuleView schema.
    OmsErrorResponse:
      type: object
      properties:
        error:
          type: string
          description: Machine-readable error code or error category.
      description: OmsErrorResponse schema.
  responses:
    OmsError:
      description: OMS error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/OmsErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````