API documentation
A small, real public API — not a full REST surface over every resource. Get a ready-made key from Setup → Integrations → "Copy prompt for agent" once signed in.
/public/api/v1/hot-leadsReturns leads that have replied or booked a meeting — the same definition the in-app dashboard uses for "hot leads".
Auth
Header X-API-Key: <your key> — a dedicated mechanism, separate from the session cookie used by the app itself.
Query params
since (optional, ISO 8601) — only return leads updated after this timestamp.
Response
{
"success": true,
"data": [
{ "email": "jane@acme.example", "fullName": "Jane Doe", "companyDomain": "acme.example", "status": "replied" }
]
}/api/v1/companies/search?q=...Free, no-signup company search over our demo dataset. No auth required.
/api/v1/people/search?q=...Free, no-signup people search over the same demo dataset. No auth required.
That's the complete public surface today — everything else in the product (campaigns, sequencing, billing) is internal to the app, not yet exposed as a documented API.