Convert sales voice notes into structured CRM leads using AI.
Drop your audio file here, or click to browse
Upload a sales voice note to extract structured lead information.
Supports MP3, WAV, M4A
Send an mp3, wav, or m4a file (max 24MB) and get back the transcript and extracted lead JSON. Public endpoint — no auth required.
curl -X POST https://your-domain.com/api/public/process-voice \
-F "file=@voice-note.mp3"const form = new FormData();
form.append("file", audioFile); // mp3 / wav / m4a
const res = await fetch("https://your-domain.com/api/public/process-voice", {
method: "POST",
body: form,
});
const { transcript, lead } = await res.json();