Skip to main content
POST
/
v1
/
prospector
/
reveal
/
bulk
Bulk Reveal Prospects
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
    }
  }
}

Request

Body Parameters

prospects
array
required
Array of prospect objects (max 25)

Headers

Authorization: Bearer wbk_your_api_key_here
Content-Type: application/json

Response

data
object
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" }
    ]
  }'

Example Response

{
  "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 }
  }
}

Errors

StatusCodeDescription
400validation_errorMissing prospects array or exceeds 25
403insufficient_permissionsMissing prospects:read permission