Skip to main content
Use this when you have a list of emails and need to know who each one belongs to — the person, their crustdata_person_id, and basic profile — at bulk scale. Submit a job, then poll or receive a webhook when it finishes. You pay only for the emails that resolve to a person.
Identify vs Enrich. Identify answers “who is this email?” — it returns the matched person’s crustdata_person_id and basic_profile (name, headline, title). If you also need contact data, full employment history, or company IDs per role, use Person Enrich (which also supports reverse lookup by business email).

How it works

Reverse identify is an asynchronous, two-call flow — you submit a job, then fetch the results once it finishes:
1

Submit your emails

POST /batch/person/identify with your list of emails (or professional_network_profile_urls). You get a batch_id back immediately.
2

Poll, or wait for a webhook

GET /batch/{batch_id} to check the job status — or pass a webhook_url on submit and we call you when it finishes.
3

Download the results

Once status is completed, the status response includes a download_url: a gzipped JSONL file with one record per input, valid for 5 days.
Emails already known to Crustdata resolve in seconds. Emails that require real-time retrieval take longer, which is why this endpoint is asynchronous.
Replace YOUR_API_KEY in each example with your actual API key. All requests require the x-api-version: 2025-11-01 header.
Pricing: 1 credit per email that resolves to a person — unmatched emails are free. See Pricing for details. Limits: up to 300 identifiers per submission, and up to 5 active batch jobs per user at a time.

1. Submit your emails

Send your emails in emails — business or personal addresses both work. The response returns a batch_id immediately — the job runs asynchronously.
You can submit professional_network_profile_urls instead of emails to resolve profile URLs to their crustdata_person_id. Submit exactly one identifier type per job. To be notified when the job finishes instead of polling, include a webhook_url in the request body.

2. Get the results

Poll the status_url (or GET /batch/{batch_id}). While the job runs, status is pending or processing. When it is completed, the response includes a download_url.
The download_url points to gzipped JSONL (.jsonl.gz) with one record per submitted identifier. The link is valid for 5 days.

Result format

Each line is one record for an input identifier:
An email with no match returns an empty matches array (and is not billed):

Personal emails resolve too

Reverse lookup is not limited to business addresses — a personal email (for example a Gmail address) resolves the same way when it can be matched to a person. Submit it in emails like any other address:
The result row has the same shape as above. Personal addresses that cannot be matched return the usual empty matches array and are not billed.

Request parameters

Submit exactly one identifier type per job — either emails or professional_network_profile_urls, not both.

Response fields

Job lifecycle

Errors


API reference summary

For credit pricing, see Pricing. For throughput guidance, see Rate limits.

What to do next