Anunzi IA Documentation
Ir a Anunzi IAAyuda al Cliente
  • Anunzi AI Calls API Documentation
    • Getting Started
    • 🔑Authentication & Security
  • Postman Collections
  • Postman Documentation
  • Assistants
    • 👨‍💼Assistants
      • 🔵Create Assistant
      • 🟣Update Assistant
      • 🟢Get Assistant
      • 🟢List Assistants
      • 🔴Delete Assistant
  • Calls
    • 📳Calls
      • 🔵Make Calls
      • 🔵Make SIP Trunk Call
      • 🟢List Calls
      • 🟢Get Call
      • Webhooks
      • Custom Variables
      • Dynamic Prompt Injection
      • Time Zones
  • Actions
    • 🪄Actions
      • 🔵Create Action
      • 🔵Initialize Custom Action
      • 🟣Update Action
      • 🔴Delete Action
      • 🟢Get Action
      • 🟢List Actions
      • 🔵Attach Action
      • 🔵Detach Action
  • Knowledge Bases
    • 📑Knowledge Bases
      • 🔵Create Knowledge Base
      • 🟢Get Knowledge Base
      • 🟣Update Knowledge Base
      • 🔴Delete Knowledge Base
      • 🔵Attach Knowledge Base
      • 🔵Detach Knowledge Base
  • Plataforma IA Generativa
    • Introducción a Anunzi IA
      • Cambiar el tema y el idioma
  • 📖TEXTO
    • Centro de Herramientas
    • Cómo crear una herramienta
    • Creador de Artículos
    • Cómo usar el Re-escritor
  • 🙋ASISTENTES
    • Crear categorías de chat
    • Crear Plantilla de Chat
    • Entrenamiento de chatbots
    • Cómo usar Asistentes IA
      • Usar comandos de voz
  • 🎨IMAGENES
    • Cómo usar el Creador de Imágenes
  • 🎶AUDIO
    • Pasar archivos de voz a texto (desgrabar)
    • Creador de Voz
    • Clonador de voz
  • Otras Funcionalidades
    • Programa de Afiliados
    • Equipos de trabajo
      • Administrar permisos del equipo
    • Cómo crear una Marca
  • Problemas Comunes
    • No funciona el enlace de confirmación
  • Actualizaciones
    • Novedades de la versión 7.4.2
Con tecnología de GitBook
En esta página

¿Te fue útil?

  1. Assistants
  2. Assistants

List Assistants

GET https://api.anunzi.net/v2/assistants/

Retrieve a paginated list of AI call assistants available in your Anunzi environment.


Query Parameters

Parameter
Type
Description

limit

int32

Number of assistants displayed per page (default: 20).

offset

string

Starting point for listing assistants (default: 0).


Example Request (cURL)

curl --request GET \
     --url 'https://api.anunzi.net/v2/assistants/?limit=1' \
     --header 'accept: application/json' \
     --header 'Authorization: Bearer API_KEY'

Example Response (200 OK)

{
  "status": "ok",
  "response": {
    "assistants": [
      {
        "model_id": "1726133933450x726464416010129300",
        "workspace_id": "1706297038990x776227155126255600",
        "type": "inbound",
        "name": "5idf orch",
        "description": "Manage incoming calls via phone, widget, Zapier, or GoHighLevel.",
        "phone_number": "+12345678901",
        "external_webhook_url": "",
        "is_recording": true,
        "agent": {
          "prompt": "Custom assistant script",
          "llm": "anunzi",
          "language": "en-US",
          "greeting_message": "Hey, you've called [company]. How may I assist you today?",
          "voice_id": "qZVyogWNtPPM0VPTPQQb",
          "voice_stability": 0.5,
          "voice_similarity_boost": 0.75,
          "voice_optimise_streaming_latency": 0,
          "voice_style": 0.0,
          "voice_use_speaker_boost": false,
          "voice_prompt": "",
          "allowed_idle_time_seconds": 15,
          "initial_pause_seconds": 0,
          "transcriber_keywords": [],
          "ring_pause_seconds": null,
          "patience_level": "low"
        },
        "max_duration": {
          "duration_seconds": 10,
          "is_enabled": false
        },
        "actions": [
          "1726133933800x19911334599928670",
          "1725621595471x41073123116789060",
          "1725993755979x75264904466697300"
        ]
      }
    ]
  }
}

Status Codes

Code
Description

200

Assistants retrieved successfully.

400

Bad Request. Invalid or missing parameters.

AnteriorGet AssistantSiguienteDelete Assistant

Última actualización hace 3 meses

¿Te fue útil?

👨‍💼
🟢