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

# List effective symbol controls

> Lists the combined manual, risk, and time controls for symbols on a trading account.



## OpenAPI

````yaml /api-reference/controls.openapi.json get /v1/controls/accounts/{account_id}/symbols
openapi: 3.1.0
info:
  title: controls
  description: ''
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://api.anthid.com
    description: Production
security: []
tags:
  - name: Organization Controls
    description: Organization-level control configuration
  - name: Controls - Account - Manual
    description: Account-level manual control configuration
  - name: Controls - Account - Risk
    description: Account-level risk-limit control configuration
  - name: Controls - Account - Time
    description: Account-level time-window control configuration
  - name: Controls - Symbol - Manual
    description: Symbol-level manual control configuration
  - name: Controls - Symbol - Risk
    description: Symbol-level risk-limit control configuration
  - name: Controls - Symbol - Time
    description: Symbol-level time-window control configuration
  - name: Effective Controls
    description: Read combined controls after scope inheritance
  - name: Control Evaluation
    description: Effective control-state evaluation
paths:
  /v1/controls/accounts/{account_id}/symbols:
    get:
      tags:
        - Effective Controls
      summary: List effective symbol controls
      description: >-
        Lists the combined manual, risk, and time controls for symbols on a
        trading account.
      operationId: listEffectiveSymbolControls
      parameters:
        - name: account_id
          in: path
          description: Trading account ID
          required: true
          schema:
            type: string
            format: uuid
          example: 550e8400-e29b-41d4-a716-446655440000
        - name: x-organization-id
          in: header
          description: Organization ID required for service-account credentials
          required: false
          schema:
            type:
              - string
              - 'null'
            format: uuid
          example: 550e8400-e29b-41d4-a716-446655440222
        - name: next_cursor
          in: query
          description: >-
            Opaque cursor from a previous page's response used to fetch the next
            page
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Effective symbol controls listed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListEffectiveSymbolControlsResponse'
              example:
                data:
                  - controls:
                      account_id: 550e8400-e29b-41d4-a716-446655440000
                      created_at: '2026-08-05T16:20:00Z'
                      manual_reason: null
                      manually_disabled: false
                      organization_id: 550e8400-e29b-41d4-a716-446655440222
                      symbol: AAPL
                      updated_at: '2026-08-05T16:25:00Z'
                      version: 2
                    risk_controls: null
                    symbol: AAPL
                    time_controls: null
                next_cursor: null
        '400':
          description: Request or organization scope is invalid
          content:
            text/plain:
              schema:
                type: string
        '401':
          description: Missing or invalid authentication credentials
          content:
            text/plain:
              schema:
                type: string
        '403':
          description: >-
            Caller lacks entitlement, read permission, organization access, or
            ownership of the trading account
          content:
            text/plain:
              schema:
                type: string
        '429':
          description: Caller exceeded the request rate limit
          content:
            text/plain:
              schema:
                type: string
        '500':
          description: Unexpected server error while listing effective controls
          content:
            text/plain:
              schema:
                type: string
      security:
        - bearerAuth: []
        - clientCredentials: []
        - apiKeyAuth: []
components:
  schemas:
    ListEffectiveSymbolControlsResponse:
      type: object
      required:
        - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/EffectiveSymbolControl'
        next_cursor:
          type:
            - string
            - 'null'
    EffectiveSymbolControl:
      type: object
      required:
        - symbol
      properties:
        controls:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/SymbolControl'
        risk_controls:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/SymbolRiskControl'
        symbol:
          type: string
        time_controls:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/SymbolTimeControl'
    SymbolControl:
      type: object
      required:
        - account_id
        - organization_id
        - version
        - symbol
        - manually_disabled
        - created_at
        - updated_at
      properties:
        account_id:
          type: string
          format: uuid
        created_at:
          type: string
          format: date-time
        manual_reason:
          type:
            - string
            - 'null'
        manually_disabled:
          type: boolean
        organization_id:
          type: string
          format: uuid
        symbol:
          type: string
        updated_at:
          type: string
          format: date-time
        version:
          type: integer
          format: int64
    SymbolRiskControl:
      type: object
      required:
        - account_id
        - organization_id
        - symbol
        - version
        - created_at
        - updated_at
      properties:
        account_id:
          type: string
          format: uuid
        created_at:
          type: string
          format: date-time
        max_daily_loss_amount:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/Quantity'
        max_daily_loss_percent:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/Percent'
        max_order_size:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/Quantity'
        max_position_size:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/Quantity'
        organization_id:
          type: string
          format: uuid
        symbol:
          type: string
        updated_at:
          type: string
          format: date-time
        version:
          type: integer
          format: int64
    SymbolTimeControl:
      type: object
      required:
        - account_id
        - organization_id
        - version
        - symbol
        - created_at
        - updated_at
      properties:
        account_id:
          type: string
          format: uuid
        created_at:
          type: string
          format: date-time
        organization_id:
          type: string
          format: uuid
        stale_order_millis:
          type:
            - integer
            - 'null'
          format: int64
        symbol:
          type: string
        trading_end:
          type:
            - string
            - 'null'
        trading_start:
          type:
            - string
            - 'null'
        updated_at:
          type: string
          format: date-time
        version:
          type: integer
          format: int64
    Quantity:
      type: string
    Percent:
      type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    clientCredentials:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Machine bearer token minted via the client_credentials grant.
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````