VoiceLead AI

Convert sales voice notes into structured CRM leads using AI.

Upload Voice Note

Drop your audio file here, or click to browse

Upload a sales voice note to extract structured lead information.

Supports MP3, WAV, M4A

Use via API

Send an mp3, wav, or m4a file (max 24MB) and get back the transcript and extracted lead JSON. Public endpoint — no auth required.

Endpoint

POSThttps://your-domain.com/api/public/process-voice

cURL

curl -X POST https://your-domain.com/api/public/process-voice \
  -F "file=@voice-note.mp3"

JavaScript (fetch)

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();

Try it