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

# List Realtime Assistants

> List all realtime assistants in your organization

<Note>
  **Beta Feature**: This endpoint is currently in beta. Features and specifications may change.
</Note>

<RequestExample>
  ```bash Example Request theme={null}
  curl -X GET https://api.upliftai.org/v1/realtime-assistants \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://api.upliftai.org/v1/realtime-assistants', {
    method: 'GET',
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY',
    }
  });

  const assistants = await response.json();
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  [
    {
      "realtimeAssistantId": "550e8400-e29b-41d4-a716-446655440000",
      "organizationId": "org_123",
      "projectId": "proj_456",
      "name": "Customer Support Assistant",
      "description": "24/7 voice support for customers",
      "config": {
        "session": {
          "ttl": 3600,
          "roomPrefix": "support"
        },
        "agent": {
          "instructions": "You are a helpful customer support agent.",
          "initialGreeting": true,
          "tools": []
        },
        "stt": {
          "default": {
            "provider": "groq",
            "model": "whisper-large-v3",
            "language": "en"
          }
        },
        "tts": {
          "default": {
            "provider": "upliftai",
            "voiceId": "v_meklc281",
            "outputFormat": "MP3_22050_32"
          }
        },
        "llm": {
          "default": {
            "provider": "groq",
            "model": "openai/gpt-oss-120b"
          }
        }
      },
      "public": false,
      "createdAt": "2024-01-15T10:30:00Z",
      "updatedAt": "2024-01-15T10:30:00Z",
      "createdBy": "user_789",
      "updatedBy": "user_789"
    },
    {
      "realtimeAssistantId": "660e8400-e29b-41d4-a716-446655440001",
      "organizationId": "org_123",
      "projectId": "proj_456",
      "name": "Sales Assistant",
      "description": "Product demos and lead qualification",
      "config": {
        "agent": {
          "instructions": "You are a sales representative.",
          "initialGreeting": false,
          "tools": []
        },
        "stt": {
          "default": {
            "provider": "openai",
            "model": "whisper-1"
          }
        },
        "tts": {
          "default": {
            "provider": "openai",
            "voiceId": "alloy",
            "model": "tts-1"
          }
        },
        "llm": {
          "default": {
            "provider": "groq",
            "model": "openai/gpt-oss-20b"
          }
        }
      },
      "public": true,
      "createdAt": "2024-01-14T09:00:00Z",
      "updatedAt": "2024-01-14T09:00:00Z",
      "createdBy": "user_789",
      "updatedBy": "user_789"
    }
  ]
  ```
</ResponseExample>
