Internal service
Missed-call text-back · instant web-lead reply · two-way SMS
A Florida AI Partners recurring service. When a lead calls and the business misses it — or submits a web form — they get an instant, on-brand text back within seconds, the conversation continues by SMS, and every lead + message lands in the unified client record. This page is just a status surface; the product is the API below.
POST /api/voice/incoming — Twilio "a call comes in" webhookPOST /api/voice/completed — Dial action → missed-call text-backPOST /api/sms/incoming — Twilio "a message comes in" (STOP/HELP + two-way AI)POST /api/web-lead — website form → instant text-backGET /api/health — config / diagnostics (no secrets)fetch("https://florida-ai-speed-to-lead.pages.dev/api/web-lead", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({
clientId: "your-client-slug",
name: form.name.value,
phone: form.phone.value, // required
intent: form.message.value,
page: location.href
})
});
See SETUP.md for Twilio number config, A2P 10DLC registration, Supabase, and keys.