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

# Get Organization

> Retrieve organization details (members only).



## OpenAPI

````yaml GET /organizations/{slug}/
openapi: 3.0.0
info:
  title: Avala API
  description: >

    # Authentication


    ## Generating an API Key


    The Avala SDK uses API keys to authenticate requests. You can create and
    manage your API keys from the

    Settings page of Mission Control.


    Follow these steps to generate a new API key:


    1. Open your settings page by clicking on your user avatar located at the
    top right-hand corner of any
        Mission Control screen, and select `Settings`.
    2. From the left-hand sub-menu, select `Security & Identity`.

    3. Click on `New API Key`, enter a name for the key, and then click `Create
    key`.


    The new key will be automatically copied to your clipboard. Please note, for
    security reasons, the key

    will not be accessible once you close the window. Ensure you store it in a
    safe location before closing

    the pop-up modal.


    ### Video walkthrough of API key generation


    <iframe class="embedly-embed"
    src="//cdn.embedly.com/widgets/media.html?src=https%3A%2F%2F
        www.youtube.com%2Fembed%2FTYdLhkAAbLA%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2F
        www.youtube.com%2Fwatch%3Fv%3DTYdLhkAAbLA&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FTYdLhkAAbLA%2F
        hqdefault.jpg&key=7788cb384c9f4d5dbbdbeffd9fe4b92f&type=text%2Fhtml&schema=youtube" width="854"
        height="480" scrolling="no" title="YouTube embed" frameborder="0" allow="autoplay;
        fullscreen; encrypted-media; picture-in-picture;" allowfullscreen="true"></iframe>


    ## Authenticating with an API Key


    This is the easiest part! Just add a header named `X-Avala-Api-Key` to your
    requests and set the

    previously generated API Key as the value.
  termsOfService: https://avala.ai/legal/terms
  contact:
    email: support@avala.ai
  version: v1
servers:
  - url: https://api.avala.ai/api/v1
security:
  - API_Key: []
  - JWT: []
tags:
  - name: datasets
    description: To be completed...
  - name: projects
    description: To be completed...
  - name: tasks
    description: List and retrieve annotation tasks.
  - name: exports
    description: To be completed...
paths:
  /organizations/{slug}/:
    parameters:
      - name: slug
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - organizations
      description: Retrieve organization details (members only).
      operationId: organizations_read
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationDetail'
components:
  schemas:
    OrganizationDetail:
      required:
        - name
        - slug
      type: object
      properties:
        uid:
          title: Uid
          type: string
          format: uuid
          readOnly: true
        name:
          title: Name
          type: string
          maxLength: 1024
          minLength: 1
        slug:
          title: Slug
          type: string
          format: slug
          pattern: ^[-a-zA-Z0-9_]+$
          maxLength: 255
          minLength: 1
        handle:
          title: Handle
          description: >-
            Unique handle for the organization (e.g., 'irobot'). Used in URLs
            and mentions.
          type: string
          pattern: ^[a-zA-Z0-9_]+$
          maxLength: 50
          nullable: true
        description:
          title: Description
          type: string
          maxLength: 1024
        logo:
          title: Logo
          type: string
          readOnly: true
          format: uri
          nullable: true
        website:
          title: Website
          type: string
          format: uri
          maxLength: 200
        industry:
          title: Industry
          type: string
          enum:
            - robotics
            - autonomous_vehicle
            - ai_ml
            - other
        email:
          title: Email
          description: Contact email for the organization.
          type: string
          format: email
          maxLength: 254
        phone:
          title: Phone
          description: Contact phone number for the organization.
          type: string
          maxLength: 50
        visibility:
          title: Visibility
          description: Whether the organization profile is publicly visible.
          type: string
          enum:
            - public
            - private
        plan:
          title: Plan
          description: Subscription plan for the organization.
          type: string
          enum:
            - basic
            - pro
            - enterprise
        is_verified:
          title: Is verified
          description: Whether the organization has been verified by staff.
          type: boolean
        is_active:
          title: Is active
          description: >-
            Whether the organization is active. Inactive organizations cannot be
            accessed.
          type: boolean
        member_count:
          title: Member count
          description: Number of members in the organization
          type: integer
          readOnly: true
        team_count:
          title: Team count
          description: Number of teams in the organization
          type: integer
          readOnly: true
        dataset_count:
          title: Dataset count
          description: Number of datasets in the organization
          type: integer
          readOnly: true
        project_count:
          title: Project count
          description: Number of projects in the organization
          type: integer
          readOnly: true
        slice_count:
          title: Slice count
          description: Number of slices in the organization
          type: integer
          readOnly: true
        role:
          title: Role
          description: Current user's role in this organization
          type: string
          readOnly: true
          nullable: true
        allowed_domains:
          description: Allowed email domains for auto-enrollment (owner/admin/staff only)
          type: array
          items:
            type: string
          readOnly: true
        slug_edits_remaining:
          title: Slug edits remaining
          description: Number of remaining slug edits allowed (max 3)
          type: integer
          readOnly: true
        billing_status:
          title: Billing status
          description: >-
            Billing subscription status (active, past_due, canceled, trialing,
            inactive) or null
          type: string
          readOnly: true
          nullable: true
        created_at:
          title: Created at
          type: string
          format: date-time
          readOnly: true
        updated_at:
          title: Updated at
          type: string
          format: date-time
          readOnly: true
  securitySchemes:
    API_Key:
      type: apiKey
      name: X-Avala-Api-Key
      in: header
      description: >-
        API key for authentication. Generate one in Mission Control Settings >
        Security & Identity.
    JWT:
      type: apiKey
      name: Authorization
      in: header
      description: JWT token with 'JWT' prefix, e.g., 'JWT eyJhbGciOiJIUzI1NiIsInR...'

````