Documentation Index
Fetch the complete documentation index at: https://docs.sixtyfour.ai/llms.txt
Use this file to discover all available pages before exploring further.
Use case
Identify the person behind an email address — name, employer, title, LinkedIn, and other contact details. Use it to enrich inbound signups, qualify support tickets, deduplicate CRM records, or investigate unknown senders.Endpoint
API Reference
See the full request/response schema and parameters in the API Reference.
Pricing
See Credits & Pricing Guide for credit costs.Errors
For error responses (400, 403, 422, etc.), see Handling Errors.Sync usage
Async pattern
For production workflows, use/reverse-email-async to submit a job and poll for results. This avoids long-lived HTTP connections and lets you parallelize many lookups without blocking your client.
The flow is:
- Submit —
POST /reverse-email-asyncwith the same body as the sync endpoint. Response includes atask_id. - Poll —
GET /job-status/{task_id}untilstatusiscompleted,failed, orcancelled. - Read result — When
completed, the resolved person record is in theresultfield, in the same shape as the sync response.
The async start endpoint returns uppercase
RUNNING. Subsequent /job-status/{task_id} calls return lowercase statuses. charge_amount is returned in cents, not credits.Polling example
Webhook callback
Pass awebhook_url to receive the result via HTTP POST instead of polling. The signed payload, retry behavior, and verification steps are documented in Outgoing Webhooks.
Bulk processing
Use/reverse-email-bulk (sync) or /reverse-email-bulk-async (async) to resolve up to 100 email addresses in a single call. Both accept a leads array and the same providers and webhook_url fields as the single-lead endpoints.
Bulk sync
Returns 200 OK with results once every lead is processed. Best for small batches where you want a single round-trip.Bulk async
Submit a batch, get back atask_id, then poll /job-status/{task_id} (or set webhook_url to receive a callback). Recommended for batches of more than a handful of leads, or when you don’t want to hold a long-lived HTTP connection.