GET
/
api
/
user
/
assistants
/
get
curl -H "Authorization: Bearer YOUR_API_TOKEN" \
  "https://app.famulor.de/api/user/assistants/get"
{
  "data": [
    {
      "id": 123,
      "user_id": 456,
      "phone_number_id": 789,
      "engine_id": 1,
      "synthesizer_id": 2,
      "transcriber_id": 3,
      "voice_id": 4,
      "instance_id": 5,
      "name": "Verkaufs-Assistent",
      "variables": {
        "company_name": "Famulor",
        "product_focus": "KI-Telefonie"
      },
      "post_call_evaluation": true,
      "fillers": 1,
      "post_call_schema": [
        {
          "name": "customer_interested",
          "type": "boolean",
          "description": "Ist der Kunde interessiert?"
        }
      ],
      "tools": ["calendar_booking", "crm_integration"],
      "is_webhook_active": true,
      "webhook_url": "https://example.com/webhook",
      "inbound_webhook_url": "https://example.com/inbound-webhook",
      "language": "de",
      "type": "outbound",
      "status": "active",
      "max_duration": 1800,
      "record": true,
      "initial_message": "Guten Tag! Ich rufe von Famulor an...",
      "system_prompt": "Du bist ein freundlicher Verkaufsassistent...",
      "flows_platform_id": null,
      "timezone": "Europe/Berlin",
      "created_at": "2024-01-15T10:30:00Z",
      "updated_at": "2024-01-15T10:30:00Z",
      "max_silence_duration": 3,
      "reengagement_interval": 5,
      "deleted_at": null,
      "end_call_on_voicemail": 1,
      "llm_temperature": "0.7",
      "voice_stability": "0.8",
      "voice_similarity": "0.9",
      "allow_interruptions": true,
      "enable_noise_cancellation": true,
      "endpoint_sensitivity": 0.5,
      "speech_speed": "1.0",
      "endpoint_type": "vad",
      "wait_for_customer": false,
      "mode": "pipeline",
      "language_id": 1,
      "transcriber_provider_id": 1,
      "synthesizer_provider_id": 1,
      "llm_model_id": 1,
      "multimodal_model_id": null,
      "ambient_sound": "office",
      "uuid": "550e8400-e29b-41d4-a716-446655440000",
      "send_webhook_only_on_completed": true,
      "include_recording_in_webhook": false,
      "interrupt_sensitivity": 0.3,
      "filler_config": {
        "enabled": true,
        "phrases": ["Hmm...", "Ich verstehe..."]
      },
      "knowledgebase_id": 100,
      "knowledgebase_mode": "semantic",
      "min_interrupt_words": 2,
      "ambient_sound_volume": "0.3",
      "widget_settings": {
        "enabled": false
      }
    }
  ],
  "current_page": 1,
  "per_page": 10,
  "total": 1,
  "last_page": 1
}
Dieser Endpunkt ermöglicht es Ihnen, alle KI-Assistenten abzurufen, die dem authentifizierten Benutzer gehören.

Query-Parameter

per_page
integer
Anzahl der Assistenten pro Seite (1-100, Standard: 10)
page
integer
Seitennummer (Standard: 1)

Antwort-Felder

data
array
Array der Assistenten
current_page
integer
Die aktuelle Seitennummer
per_page
integer
Anzahl der Elemente pro Seite
total
integer
Gesamtanzahl der Assistenten
last_page
integer
Die letzte Seitennummer
curl -H "Authorization: Bearer YOUR_API_TOKEN" \
  "https://app.famulor.de/api/user/assistants/get"
{
  "data": [
    {
      "id": 123,
      "user_id": 456,
      "phone_number_id": 789,
      "engine_id": 1,
      "synthesizer_id": 2,
      "transcriber_id": 3,
      "voice_id": 4,
      "instance_id": 5,
      "name": "Verkaufs-Assistent",
      "variables": {
        "company_name": "Famulor",
        "product_focus": "KI-Telefonie"
      },
      "post_call_evaluation": true,
      "fillers": 1,
      "post_call_schema": [
        {
          "name": "customer_interested",
          "type": "boolean",
          "description": "Ist der Kunde interessiert?"
        }
      ],
      "tools": ["calendar_booking", "crm_integration"],
      "is_webhook_active": true,
      "webhook_url": "https://example.com/webhook",
      "inbound_webhook_url": "https://example.com/inbound-webhook",
      "language": "de",
      "type": "outbound",
      "status": "active",
      "max_duration": 1800,
      "record": true,
      "initial_message": "Guten Tag! Ich rufe von Famulor an...",
      "system_prompt": "Du bist ein freundlicher Verkaufsassistent...",
      "flows_platform_id": null,
      "timezone": "Europe/Berlin",
      "created_at": "2024-01-15T10:30:00Z",
      "updated_at": "2024-01-15T10:30:00Z",
      "max_silence_duration": 3,
      "reengagement_interval": 5,
      "deleted_at": null,
      "end_call_on_voicemail": 1,
      "llm_temperature": "0.7",
      "voice_stability": "0.8",
      "voice_similarity": "0.9",
      "allow_interruptions": true,
      "enable_noise_cancellation": true,
      "endpoint_sensitivity": 0.5,
      "speech_speed": "1.0",
      "endpoint_type": "vad",
      "wait_for_customer": false,
      "mode": "pipeline",
      "language_id": 1,
      "transcriber_provider_id": 1,
      "synthesizer_provider_id": 1,
      "llm_model_id": 1,
      "multimodal_model_id": null,
      "ambient_sound": "office",
      "uuid": "550e8400-e29b-41d4-a716-446655440000",
      "send_webhook_only_on_completed": true,
      "include_recording_in_webhook": false,
      "interrupt_sensitivity": 0.3,
      "filler_config": {
        "enabled": true,
        "phrases": ["Hmm...", "Ich verstehe..."]
      },
      "knowledgebase_id": 100,
      "knowledgebase_mode": "semantic",
      "min_interrupt_words": 2,
      "ambient_sound_volume": "0.3",
      "widget_settings": {
        "enabled": false
      }
    }
  ],
  "current_page": 1,
  "per_page": 10,
  "total": 1,
  "last_page": 1
}