curl --request POST \
--url https://api.example.com/v1/prospector/reveal/bulk \
--header 'Content-Type: application/json' \
--data '
{
"prospects": [
{
"member_id": "<string>",
"company_id": "<string>"
}
]
}
'{
"data": {
"results": [
{}
],
"summary": {
"total": 123,
"succeeded": 123,
"failed": 123
}
}
}Reveal emails and phones for multiple prospects (max 25)
curl --request POST \
--url https://api.example.com/v1/prospector/reveal/bulk \
--header 'Content-Type: application/json' \
--data '
{
"prospects": [
{
"member_id": "<string>",
"company_id": "<string>"
}
]
}
'{
"data": {
"results": [
{}
],
"summary": {
"total": 123,
"succeeded": 123,
"failed": 123
}
}
}Authorization: Bearer wbk_your_api_key_here
Content-Type: application/json
curl -X POST https://data.leadlex.com/functions/v1/api-gateway/v1/prospector/reveal/bulk \
-H "Authorization: Bearer wbk_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"prospects": [
{ "member_id": "12345", "company_id": "67890" },
{ "member_id": "11111", "company_id": "22222" }
]
}'
{
"data": {
"results": [
{
"member_id": "12345",
"email": "jane@acme.com",
"email_verified": true,
"phone": "+1234567890",
"full_name": "Jane Doe",
"status": "success"
},
{
"member_id": "11111",
"status": "failed",
"error": "HTTP 404"
}
],
"summary": { "total": 2, "succeeded": 1, "failed": 1 }
}
}
| Status | Code | Description |
|---|---|---|
| 400 | validation_error | Missing prospects array or exceeds 25 |
| 403 | insufficient_permissions | Missing prospects:read permission |