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

# Get Organization

> Get an organization by ID



## OpenAPI

````yaml GET /orgs/{org_id}
openapi: 3.1.0
info:
  title: Timbal Platform API
  description: Public API documentation for the Timbal platform
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.timbal.ai
    description: Production
  - url: https://api.dev.timbal.ai
    description: Development
security: []
tags:
  - name: ace
    description: Action Control Engine (ACE) operations
  - name: analytics
    description: Org and project analytics
  - name: billing
    description: Subscriptions, usage, and payment-related operations
  - name: content
    description: Re-sign stored content URLs
  - name: files
    description: File operations
  - name: iam
    description: IAM — actions, roles, users, and authorization introspection
  - name: k2
    description: Knowledge Bases v2 operations
  - name: orgs
    description: Organization operations
  - name: projects
    description: Project operations
  - name: runs
    description: Execution operations
  - name: templates
    description: Public project template catalog
  - name: users
    description: Authenticated user profile
paths:
  /orgs/{org_id}:
    get:
      tags:
        - orgs
      description: Get an organization by ID
      operationId: handler
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Organization details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetOrgResBody'
      security:
        - bearer_auth: []
components:
  schemas:
    GetOrgResBody:
      type: object
      required:
        - org
      properties:
        org:
          $ref: '#/components/schemas/Org'
    Org:
      type: object
      required:
        - id
        - name
        - plan
        - plan_metadata
        - overage_enabled
        - billing_suspended
        - plan_cancel_at_period_end
        - created_at
        - role
      properties:
        banner_url:
          type:
            - string
            - 'null'
        billing_suspended:
          type: boolean
          description: >-
            `true` when billing is suspended because a finalized invoice charge

            failed and is still unpaid. While suspended, credit-consuming
            requests

            are blocked until the outstanding invoice is paid.
        contact_email:
          type:
            - string
            - 'null'
        contact_name:
          type:
            - string
            - 'null'
        contact_phone:
          type:
            - string
            - 'null'
        country:
          type:
            - string
            - 'null'
        created_at:
          type: string
          format: date-time
        description:
          type:
            - string
            - 'null'
        id:
          type: integer
          format: int64
        name:
          type: string
        overage_cap_credits:
          type:
            - integer
            - 'null'
          format: int64
        overage_enabled:
          type: boolean
        overage_rate_cents_per_1k:
          type:
            - integer
            - 'null'
          format: int64
          description: >-
            Metered-overage rate in cents per 1,000 credits. Self-serve plans
            return

            the fixed tier default; enterprise returns the negotiated rate when

            configured; `null` on free or when overage is unavailable.
        overage_threshold_usd:
          type:
            - integer
            - 'null'
          format: int64
          description: |-
            Maximum outstanding overage (whole USD dollars) allowed before an
            interim invoice is issued. Self-serve plans return the fixed tier
            default (1× monthly subscription); enterprise returns the negotiated
            value when configured; `null` when no interim threshold applies.
        photo_url:
          type:
            - string
            - 'null'
        plan:
          type: string
        plan_cancel_at:
          type:
            - integer
            - 'null'
          format: int64
          description: >-
            Unix timestamp (seconds) of the scheduled plan cancellation; `null`
            when

            no cancellation is pending.
        plan_cancel_at_period_end:
          type: boolean
          description: >-
            `true` between the moment a user schedules a plan cancellation in
            the

            Billing Portal and the final cancellation taking effect.
        plan_metadata: {}
        plan_period:
          type:
            - string
            - 'null'
          description: >-
            Billing cadence of the active plan: `"month"` or `"year"`. `null` on
            the

            free plan (no active subscription).
        plan_renews_at:
          type:
            - integer
            - 'null'
          format: int64
          description: >-
            Unix timestamp (seconds) when the current billing period ends and
            the

            plan renews. `null` on the free plan (no active subscription). When

            `plan_cancel_at_period_end` is `true`, the plan ends at this time
            instead

            of renewing.
        role:
          type: string
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: >-
        Timbal API key. Obtain your API key from the Timbal platform settings.
        See [Authentication](/api-reference/authentication) for more
        information.

````