Endpoints
unique-emails
Every unique email your team has found, across all searches.
POST /api/v1/unique-emails
Every unique email your team has found, across all searches.
Request
{ "limit": 20, "cursor": "..." }Response
{
"emails": [
{
"email": "jane@acme.com",
"name": "Jane Doe",
"title": "Chief Executive Officer",
"domain": "acme.com",
"role": "CEO",
"foundAt": 1776000000000
}
],
"nextCursor": null,
"isDone": true
}limit is clamped to 1 to 50 (default 20).