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

# Get Org Tier

> Get tier assignment for an organization.



## OpenAPI

````yaml https://platform.tracecat.com/api/openapi.json get /admin/tiers/organizations/{org_id}
openapi: 3.1.0
info:
  title: Tracecat API
  summary: Tracecat API
  description: The open source AI automation platform for security teams and agents.
  termsOfService: >-
    https://docs.google.com/document/d/e/2PACX-1vQvDe3SoVAPoQc51MgfGCP71IqFYX_rMVEde8zC4qmBCec5f8PLKQRdxa6tsUABT8gWAR9J-EVs2CrQ/pub
  contact:
    name: Tracecat Founders
    email: founders@tracecat.com
  license:
    name: AGPL-3.0
    url: https://www.gnu.org/licenses/agpl-3.0.html
  version: '1'
servers:
  - url: /api
security: []
tags:
  - name: public
    description: Public facing endpoints
  - name: workflows
    description: Workflow management
  - name: actions
    description: Action management
  - name: triggers
    description: Workflow triggers
  - name: secrets
    description: Secret management
  - name: variables
    description: Workspace variable management
paths:
  /admin/tiers/organizations/{org_id}:
    get:
      tags:
        - admin
        - admin:tiers
      summary: Get Org Tier
      description: Get tier assignment for an organization.
      operationId: admin-get_org_tier
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Org Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationTierRead'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyCookie: []
components:
  schemas:
    OrganizationTierRead:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        organization_id:
          type: string
          format: uuid
          title: Organization Id
        tier_id:
          type: string
          format: uuid
          title: Tier Id
        max_concurrent_workflows:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Concurrent Workflows
        max_action_executions_per_workflow:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Action Executions Per Workflow
        max_concurrent_actions:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Concurrent Actions
        api_rate_limit:
          anyOf:
            - type: integer
            - type: 'null'
          title: Api Rate Limit
        api_burst_capacity:
          anyOf:
            - type: integer
            - type: 'null'
          title: Api Burst Capacity
        entitlement_overrides:
          anyOf:
            - $ref: '#/components/schemas/EntitlementsDict'
            - type: 'null'
        stripe_customer_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Stripe Customer Id
        stripe_subscription_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Stripe Subscription Id
        expires_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Expires At
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        tier:
          anyOf:
            - $ref: '#/components/schemas/TierRead'
            - type: 'null'
      type: object
      required:
        - id
        - organization_id
        - tier_id
        - max_concurrent_workflows
        - max_action_executions_per_workflow
        - max_concurrent_actions
        - api_rate_limit
        - api_burst_capacity
        - entitlement_overrides
        - stripe_customer_id
        - stripe_subscription_id
        - expires_at
        - created_at
        - updated_at
      title: OrganizationTierRead
      description: Organization tier assignment response.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EntitlementsDict:
      properties:
        custom_registry:
          type: boolean
          title: Custom Registry
          description: Whether custom registry repositories are enabled
        git_sync:
          type: boolean
          title: Git Sync
          description: Whether git sync is enabled
        agent_addons:
          type: boolean
          title: Agent Addons
          description: Whether add-on agent capabilities are enabled (approvals, presets)
        case_addons:
          type: boolean
          title: Case Addons
          description: >-
            Whether add-on case capabilities are enabled (dropdowns, durations,
            tasks, triggers)
        rbac_addons:
          type: boolean
          title: Rbac Addons
          description: >-
            Whether RBAC add-ons are enabled (custom roles, groups, and
            assignments)
        service_accounts:
          type: boolean
          title: Service Accounts
          description: Whether service accounts for API key access are enabled
        workspace_chat:
          type: boolean
          title: Workspace Chat
          description: Whether Workspace Chat is enabled
        watchtower:
          type: boolean
          title: Watchtower
          description: >-
            Whether Watchtower agent monitoring is enabled (agent sessions,
            tool-call telemetry, and controls)
      type: object
      title: EntitlementsDict
      description: |-
        TypedDict for tier entitlements stored in JSONB.

        All keys are optional (total=False) to support partial overrides.
    TierRead:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        display_name:
          type: string
          title: Display Name
        max_concurrent_workflows:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Concurrent Workflows
        max_action_executions_per_workflow:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Action Executions Per Workflow
        max_concurrent_actions:
          anyOf:
            - type: integer
            - type: 'null'
          title: Max Concurrent Actions
        api_rate_limit:
          anyOf:
            - type: integer
            - type: 'null'
          title: Api Rate Limit
        api_burst_capacity:
          anyOf:
            - type: integer
            - type: 'null'
          title: Api Burst Capacity
        entitlements:
          $ref: '#/components/schemas/EntitlementsDict'
        is_default:
          type: boolean
          title: Is Default
        sort_order:
          type: integer
          title: Sort Order
        is_active:
          type: boolean
          title: Is Active
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - display_name
        - max_concurrent_workflows
        - max_action_executions_per_workflow
        - max_concurrent_actions
        - api_rate_limit
        - api_burst_capacity
        - entitlements
        - is_default
        - sort_order
        - is_active
        - created_at
        - updated_at
      title: TierRead
      description: Tier response schema.
    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
  securitySchemes:
    APIKeyCookie:
      type: apiKey
      in: cookie
      name: fastapiusersauth

````