Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
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)
Show Prospect object
Authorization: Bearer wbk_your_api_key_here Content-Type: application/json
Show properties
member_id
email
phone
full_name
status
success
failed
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 } } }
validation_error
prospects
insufficient_permissions
prospects:read