Agent téléphonique IA

Un agent IA qui décroche à chaque appel

Un agent vocal en temps réel qui répond, comprend, qualifie et oriente — jour et nuit, dans la voix de votre marque. Une seule API, latence inférieure à la seconde.

Latence inférieure à la seconde

Une conversation fluide et naturelle grâce à notre infrastructure speech-to-speech en temps réel.

Disponible 24/7

Plus aucun appel manqué : l'agent répond la nuit, le week-end et pendant les pics d'activité.

Dans votre voix de marque

Définissez le ton, l'objectif et les règles ; l'agent suit votre script et passe la main si besoin.

curl -X POST https://api.phonevoice.ai/api/v1/calls/initiate \
  -H "Authorization: Bearer $PHONEVOICE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "recipient_phone_number": "+33612345678",
    "agent_id": 1533,
    "objective": "Qualify the lead, then book a demo"
  }'
const res = await fetch("https://api.phonevoice.ai/api/v1/calls/initiate", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.PHONEVOICE_API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    recipient_phone_number: "+33612345678",
    agent_id: 1533,
    objective: "Qualify the lead, then book a demo",
  }),
});
const call = await res.json();
console.log(call.phone_call_id);
import os, requests

res = requests.post(
    "https://api.phonevoice.ai/api/v1/calls/initiate",
    headers={"Authorization": f"Bearer {os.environ['PHONEVOICE_API_KEY']}"},
    json={
        "recipient_phone_number": "+33612345678",
        "agent_id": 1533,
        "objective": "Qualify the lead, then book a demo",
    },
)
print(res.json()["phone_call_id"])
require "net/http"
require "json"

uri = URI("https://api.phonevoice.ai/api/v1/calls/initiate")
req = Net::HTTP::Post.new(uri)
req["Authorization"] = "Bearer #{ENV['PHONEVOICE_API_KEY']}"
req["Content-Type"] = "application/json"
req.body = {
  recipient_phone_number: "+33612345678",
  agent_id: 1533,
  objective: "Qualify the lead, then book a demo",
}.to_json
res = Net::HTTP.start(uri.host, uri.port, use_ssl: true) { |h| h.request(req) }
puts JSON.parse(res.body)["phone_call_id"]

Prêt à donner une voix à vos applications ?

Créez votre compte développeur et lancez votre premier appel en quelques minutes.

Compare

How Phonevoice compares