Appels dans le navigateur
Des appels directement dans le navigateur
Intégrez un softphone dans votre application ou votre site : vos utilisateurs parlent à un agent IA ou à un conseiller, sans matériel ni ligne dédiée.
Aucun matériel
Le micro et l'audio passent par le navigateur — rien à installer.
Click-to-call intégré
Un bouton sur votre site ou votre CRM lance l'appel instantanément.
Enregistré et transcrit
Les appels navigateur bénéficient des mêmes enregistrement et résumé.
// 1. Your server creates an embeddable browser session for a call
const { url } = await fetch(
`https://api.phonevoice.ai/api/v1/calls/${callId}/embed_session`,
{ method: "POST", headers: { Authorization: `Bearer ${process.env.PHONEVOICE_API_KEY}` } }
).then((r) => r.json());
// 2. Mount it in the browser — mic in, audio out, no phone line
const frame = document.createElement("iframe");
frame.allow = "microphone; autoplay";
frame.src = url;
document.querySelector("#call").appendChild(frame);
<!-- Drop-in click-to-call button: opens the agent in the browser -->
<button onclick="startCall()">Call us now</button>
<div id="call" style="width:360px;height:640px"></div>
À découvrir aussi
Prêt à donner une voix à vos applications ?
Créez votre compte développeur et lancez votre premier appel en quelques minutes.