Preview
Leads (People)
Preview
Synchronously preview the first 25 matches and the total estimated count for a set of advanced lead search filters, without creating a Search or consuming credits.
POST
Preview
Run the same filters as
POST /leads/advanced_search and get back a synchronous preview: the total estimated profile count plus the first 25 matching leads. Use it to validate filters and size an audience before kicking off the real search.
Overview
Compared toPOST /leads/advanced_search, the preview:
- Does not create a
Searchrecord. - Does not call your webhook.
- Does not consume credits.
- Does not require
webhook_url.
webhook_url, name, limit, streaming, scale, and custom are accepted but ignored: the response always contains up to 25 leads.
Requirements
- A valid integration must be connected on the authenticated user.
- At least one filter or
keywordmust be provided.
Rate Limits
- 1 request per second per user.
Response
200 OK — returns immediately with:
| Field | Type | Notes |
|---|---|---|
total_count | integer | Total estimated number of leads matching the filters (not capped to 25). |
preview | array of objects | Up to 25 matching leads. Each entry contains the fields listed above when available. |
Errors
| Status | When |
|---|---|
400 Bad Request | No filter or keyword provided. |
401 Unauthorized | Invalid API key, or credentials missing/expired. |
403 Forbidden | API key does not have access to this endpoint. |
422 Unprocessable Entity | Invalid filter shape, or enum ID outside the authorized list (e.g. unknown functions, seniority_levels, company_size, etc.). |
429 Too Many Requests | Per-user rate limit (1 req/s) or upstream LinkedIn rate limit. |
Example
Authorizations
Your API key
Body
application/json
Same filter parameters as POST /leads/advanced_search. webhook_url, name, limit, streaming, scale, and custom are accepted but ignored — the response is always the first 25 results.
Accepts the same filter object as POST /leads/advanced_search. See that endpoint for the full list of supported filters.