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

# Discovered Orgs

> Get organizations available to the user during authentication



## OpenAPI

````yaml get /api/discovered_organizations
openapi: 3.1.0
info:
  title: Axion Backend API
  description: Backend API for Axion platform with desktop automation capabilities
  version: 1.0.0
servers:
  - url: https://api.getgranite.ai
    description: Production server
  - url: http://localhost:8000
    description: Local development server
security: []
tags:
  - name: Authentication
    description: User authentication and session management
  - name: Organizations
    description: Organization management and membership
  - name: Health
    description: API health and status monitoring
  - name: Automations
    description: Automation planning and execution
  - name: MIG
    description: Managed Instance Group operations
  - name: Agent
    description: Agent execution and streaming
  - name: Onboarding
    description: Organization onboarding flow
  - name: Organization Automations
    description: Organization automation endpoint management
  - name: Organization Endpoints
    description: Public endpoints for organization automations
  - name: Analytics
    description: Analytics and reporting endpoints
paths:
  /api/discovered_organizations:
    get:
      tags:
        - Authentication
        - Organizations
      summary: List discovered organizations
      description: Get organizations available to the user during authentication
      operationId: listDiscoveredOrganizations
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DiscoveredOrganizationsResponse'
components:
  schemas:
    DiscoveredOrganizationsResponse:
      properties:
        email_address:
          type: string
          title: Email Address
          description: User's email address
        discovered_organizations:
          items:
            $ref: '#/components/schemas/DiscoveredOrganizationResponse'
          type: array
          title: Discovered Organizations
          description: Organizations available to user
      type: object
      required:
        - email_address
        - discovered_organizations
      title: DiscoveredOrganizationsResponse
      description: List of organizations discovered for user
    DiscoveredOrganizationResponse:
      properties:
        organization_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Id
          description: Organization identifier
        organization_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Name
          description: Organization display name
        organization_slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Organization Slug
          description: Organization URL slug
        membership_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Membership Type
          description: User's membership type
        membership_details:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Membership Details
          description: Additional membership information
      type: object
      title: DiscoveredOrganizationResponse
      description: Organization discovered for user

````