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. Calls
  2. Calls

Get Call

GET https://api.anunzi.net/v2/calls/{call_id}

Retrieve the transcript and other relevant details of a specific phone call handled by an Anunzi AI assistant.


Path Parameters

Parameter
Type
Required
Description

call_id

string

Yes

The unique ID of the call to retrieve.


Example Request (cURL)

curl --request GET \
     --url https://api.anunzi.net/v2/calls/23156151231261651 \
     --header 'accept: text/plain' \
     --header 'Authorization: Bearer API_KEY'

Example Response (200 OK)

{
  "status": "ok",
  "response": {
    "calls": [
      {
        "call_id": "1725527007259x327898249603432960",
        "model_id": "1725526325346x892123579587048600",
        "campaign_type": "Inbound",
        "phone_number_from": "+11234567890",
        "phone_number_to": "+1098765432",
        "name": "",
        "transcript": "\nbot: Hey, you've called [company]. How may I assist you today?\nhuman: Hello. I would like to know my preferences.\nbot: Let me check your preferences.\nbot: I didn't catch your name. \nbot: Could you please provide it so I can look up your preferences? \nhuman: Eddie.\nbot: Let me check your preferences.\nbot: Alright, Eddie. \nbot: Let me quickly pull up your preferences. \nbot: One moment, please. \n...",
        "duration": 66,
        "recording_url": "https://api.twilio.com/2019-06-03/Accounts/ACb029z9m380d81c4329469c63c99941bf/Recordings/RE68bd7f17dc26a49caac7x3n2a59efb3",
        "end_call_reason": "human_pick_up_cut_off"
      }
    ]
  }
}

Response Fields

Field
Type
Description

call_id

string

Unique identifier for the call.

model_id

string

ID of the assistant handling the call.

campaign_type

string

Specifies whether the call was "Inbound" or "Outbound".

phone_number_from

string

The caller's phone number.

phone_number_to

string

The number that was dialed.

name

string

Name of the person called (if available).

transcript

string

The full conversation transcript between the assistant and the user.

duration

int

Duration of the call in seconds.

recording_url

string

URL to access the audio recording of the call (if recording was enabled).

end_call_reason

string

Reason why the call ended.


Status Codes

Code
Description

200

Call details retrieved successfully.

400

Bad Request. Invalid or missing parameters.

AnteriorList CallsSiguienteWebhooks

Última actualización hace 3 meses

¿Te fue útil?

📳
🟢