Feed API — pull

If exposing a read-only endpoint is easier for you than pushing webhooks, give us a feed URL and a bearer token — we poll it, typically every 5 minutes.

When to choose this. Push (the Events API) gets leads to an agent within seconds and is the recommended default — speed-to-lead is the biggest conversion driver in phone recovery. Choose the feed model when webhooks are impractical on your side; the polling interval becomes your worst-case delivery latency.

The contract

GET https://your-host/leads-feed?since={iso8601}&cursor={opaque}
Authorization: Bearer <token you issue to us>

// response
{
  "count": 42,
  "next_cursor": "abc123",   // empty/absent when no more pages
  "items": [ { …lead, same fields as the Events API… } ]
}

Going live — the checklist

  1. You send us the feed URL, a bearer token, and one sample response.
  2. We confirm the mapping and start polling against a test window.
  3. Seed check: we verify a known test lead comes through with a working phone number.