Internal service

Speed-to-Lead

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.

Endpoints
Web-lead embed (drop into a client's contact form handler)
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.