Internal service

Missed-Call Text Back

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.

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, carrier registration for business texting, Supabase, and keys.