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

# Get risk status summary

> Get comprehensive risk status from the risk_status_summary view.

## Response Includes

- **Portfolio Heat**: Current heat percentage vs maximum allowed
- **Position Count**: Open positions and concentration metrics
- **Sector Exposure**: Beta-weighted sector allocations
- **Drawdown Status**: Daily, weekly, and peak drawdown tracking
- **Warnings**: Active risk warnings and limit violations
- **Trading Status**: Whether trading is paused or size-reduced

## Account Tiers (v3.1 spec)

| Tier | Account Size | Max Heat |
|------|--------------|----------|
| 1 | $5k-25k | 6% |
| 2 | $25k-100k | 7.5% |
| 3 | $100k-500k | 8% |

## Performance Target

<200ms response time.



## OpenAPI

````yaml /api/openapi.json get /api/graph/v1/risk/status
openapi: 3.1.0
info:
  title: Sequency Graph API
  description: >

    # Sequency Graph-Native Trading API


    Graph-native API for trading intelligence, built on FalkorDB.


    ## Features


    - **Screener**: Filter stocks using graph-native queries with relationship
    expansion

    - **Stock Detail**: Complete stock context with all relationships

    - **Confluence Scoring**: Setup quality assessment with weighted components

    - **Strategy Matching**: Find matching options strategies via graph
    traversal

    - **Market Context**: Current market-wide context for trading decisions


    ## Data Sources


    All data is sourced from the FalkorDB knowledge graph, populated by:

    - Pattern detector (Go) - Technical indicators, patterns

    - Graph sync service - Levels, volume profiles, news, day classification
  version: 1.0.0
servers: []
security: []
paths:
  /api/graph/v1/risk/status:
    get:
      tags:
        - Risk Management
      summary: Get risk status summary
      description: |-
        Get comprehensive risk status from the risk_status_summary view.

        ## Response Includes

        - **Portfolio Heat**: Current heat percentage vs maximum allowed
        - **Position Count**: Open positions and concentration metrics
        - **Sector Exposure**: Beta-weighted sector allocations
        - **Drawdown Status**: Daily, weekly, and peak drawdown tracking
        - **Warnings**: Active risk warnings and limit violations
        - **Trading Status**: Whether trading is paused or size-reduced

        ## Account Tiers (v3.1 spec)

        | Tier | Account Size | Max Heat |
        |------|--------------|----------|
        | 1 | $5k-25k | 6% |
        | 2 | $25k-100k | 7.5% |
        | 3 | $100k-500k | 8% |

        ## Performance Target

        <200ms response time.
      operationId: get_risk_status_api_graph_v1_risk_status_get
      parameters:
        - name: account_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            description: Filter by account ID (optional)
            title: Account Id
          description: Filter by account ID (optional)
      responses:
        '200':
          description: Risk status summary
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RiskStatusResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '504':
          description: Query timeout
components:
  schemas:
    RiskStatusResponse:
      properties:
        account_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Account Id
        status:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Status
          description: Risk status from view
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
      type: object
      title: RiskStatusResponse
      description: Response for risk status endpoint.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````