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

# Get organization control

> Returns organization controls by organization id. This route is intentionally limited to service-account callers with the `control:read` scope.



## OpenAPI

````yaml /api-reference/controls.openapi.json get /v1/controls/organizations/{org_id}
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: Control Evaluation
    description: Effective control-state evaluation
paths:
  /v1/controls/organizations/{org_id}:
    get:
      tags:
        - Organization Controls
      summary: Get organization control
      description: >-
        Returns organization controls by organization id. This route is
        intentionally limited to service-account callers with the `control:read`
        scope.
      operationId: getOrganizationControl
      parameters:
        - name: org_id
          in: path
          description: Organization id
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Organization control found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationControl'
        '401':
          description: Missing or invalid service credentials
          content:
            text/plain:
              schema:
                type: string
        '403':
          description: Caller is not a service account or lacks the `control:read` scope
          content:
            text/plain:
              schema:
                type: string
        '404':
          description: Organization control was not found
          content:
            text/plain:
              schema:
                type: string
        '500':
          description: Unexpected server error while reading the control
          content:
            text/plain:
              schema:
                type: string
      security:
        - clientCredentials: []
components:
  schemas:
    OrganizationControl:
      type: object
      required:
        - organization_id
        - version
        - manually_disabled
        - created_at
        - updated_at
      properties:
        created_at:
          type: string
          format: date-time
        manual_reason:
          type:
            - string
            - 'null'
        manually_disabled:
          type: boolean
        organization_id:
          type: string
          format: uuid
        updated_at:
          type: string
          format: date-time
        version:
          type: integer
          format: int64
  securitySchemes:
    clientCredentials:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Machine bearer token minted via the client_credentials grant.

````