LeadLeapData
POST/v1/find2 unitsDEPRECATED

Find (deprecated)

Sunset: Wed, 16 Jun 2026 00:00:00 GMT. Every response from this endpoint carries Deprecation: true, a Sunset header, and a Link rel="successor-version" header pointing at the replacement. After the sunset date, calls will return 410 Gone.

Migrate to

/v1/find did one big fan-out; the replacements split that into purpose-built endpoints with cleaner semantics and lower latency.

If you must call it before sunset

The endpoint still works. Same body shape as before. New rule: every request needs at least one narrowing filter (anything other than has_email/ has_phone / has_linkedin), or the call returns 400 with a working example body.

curl -X POST https://data.leadleap.net/v1/find \
  -H "Authorization: Bearer $LEADLEAP_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "companies",
    "filters": { "country": ["US"], "industry": ["computer software"] },
    "limit": 5
  }'