searchId and status processing.GET /v1/searches/{searchId} to poll for status and results. For a single request thatPOST /v1/searches/sync (synchronous search).curl --location --request POST 'https://api.sherlockeye.io/v1/searches' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "email",
"value": "someone@example.com",
"additional_modules": [
"digital_accounts_expansion"
]
}'{
"success": true,
"data": {
"searchId": "f6f3b720-4f3a-4dcf-9d0e-6e5efc46f8c9",
"type": "email",
"value": "someone@example.com",
"status": "processing",
"createdAt": "2025-01-01T12:00:00.000Z"
}
}