Internal service
Missed-call text-back · instant reply to website messages · texting back and forth
A Florida AI Partners recurring service. When a customer calls and the business misses it — or fills out a web form — they get an instant text back within seconds, the conversation continues by text, and every 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, carrier registration for business texting, Supabase, and keys.