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

# Risk Settings List

> List all risk settings for the user, with current position data.

Position data (shares, cost_basis, P&L) is derived from real_trades on each request.



## OpenAPI

````yaml /openapi.json get /api/sdk/positions/monitors
openapi: 3.1.0
info:
  title: Simmer API
  description: Agent-native trading infrastructure for prediction markets.
  version: 1.0.0
servers:
  - url: https://api.simmer.markets
security: []
paths:
  /api/sdk/positions/monitors:
    get:
      summary: Risk Settings List
      description: >-
        List all risk settings for the user, with current position data.


        Position data (shares, cost_basis, P&L) is derived from real_trades on
        each request.
      operationId: api_sdk_risk_settings_list_api_sdk_positions_monitors_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SDKRiskSettingsListResponse'
components:
  schemas:
    SDKRiskSettingsListResponse:
      properties:
        settings:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Settings
        count:
          type: integer
          title: Count
      type: object
      required:
        - settings
        - count
      title: SDKRiskSettingsListResponse
      description: Response listing all risk settings with current position data.

````