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

> Get triggered risk alerts for this user's positions.
Called by SDK on init to check for pending SL/TP exits.
Alerts are written by the WS risk trigger for external wallet users.

<Note>The Python SDK handles risk alerts automatically via `get_briefing()`. You typically do not need to call this directly.</Note>


## OpenAPI

````yaml /openapi.json get /api/sdk/risk-alerts
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/risk-alerts:
    get:
      summary: Risk Alerts
      description: |-
        Get triggered risk alerts for this user's positions.
        Called by SDK on init to check for pending SL/TP exits.
        Alerts are written by the WS risk trigger for external wallet users.
      operationId: api_sdk_risk_alerts_api_sdk_risk_alerts_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````