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

# Get Org



## OpenAPI

````yaml /api-reference/openapi.json get /api/v2/external/orgs/{slug}
openapi: 3.1.0
info:
  title: Lyceum Cloud Execution API
  version: 0.1.0
servers: []
security: []
paths:
  /api/v2/external/orgs/{slug}:
    get:
      tags:
        - Organizations
      summary: Get Org
      operationId: get_org_api_v2_external_orgs__slug__get
      parameters:
        - name: slug
          in: path
          required: true
          schema:
            type: string
            title: Slug
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrgResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OrgResponse:
      properties:
        slug:
          type: string
          maxLength: 64
          minLength: 1
          pattern: ^[a-z0-9][a-z0-9-]*$
          title: Slug
        name:
          type: string
          maxLength: 100
          minLength: 1
          title: Name
        id:
          type: string
          title: Id
        billing_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Billing Email
        billing_details:
          anyOf:
            - $ref: '#/components/schemas/OrgBillingDetails'
            - type: 'null'
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - slug
        - name
        - id
        - created_at
      title: OrgResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    OrgBillingDetails:
      properties:
        billing_company_name:
          anyOf:
            - type: string
              maxLength: 255
            - type: 'null'
          title: Billing Company Name
        billing_address_line1:
          anyOf:
            - type: string
              maxLength: 255
            - type: 'null'
          title: Billing Address Line1
        billing_address_line2:
          anyOf:
            - type: string
              maxLength: 255
            - type: 'null'
          title: Billing Address Line2
        billing_city:
          anyOf:
            - type: string
              maxLength: 128
            - type: 'null'
          title: Billing City
        billing_state:
          anyOf:
            - type: string
              maxLength: 128
            - type: 'null'
          title: Billing State
        billing_postal_code:
          anyOf:
            - type: string
              maxLength: 32
            - type: 'null'
          title: Billing Postal Code
        billing_country:
          anyOf:
            - type: string
              maxLength: 2
            - type: 'null'
          title: Billing Country
        billing_tax_id:
          anyOf:
            - type: string
              maxLength: 64
            - type: 'null'
          title: Billing Tax Id
        billing_tax_id_type:
          anyOf:
            - type: string
              maxLength: 32
            - type: 'null'
          title: Billing Tax Id Type
      type: object
      title: OrgBillingDetails
      description: |-
        An org's company billing details (stored in ``org_billing_details``,
        1:1 with the org). Synced onto the Stripe customer at checkout so they
        render on the generated invoice (Bill to / VAT). All optional — an org
        with none set falls back to Stripe's default (customer email only).
    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

````