Search people from your connected LinkedIn account (classic search, or Sales Navigator when the account has it): keywords, location, company, industry, connection degree. Returns provider ids ready for linkedin.invite.
Unipile:
all inputs
✓ marks a combination proven with a real provider call. Others are wired and unit-tested; their first live run verifies them.
| Provider | Status |
|---|---|
Unipile |
live |
Unit: per_search · unmatched results billed: no
LinkedIn's own search caps apply: about 1,000 profiles a day on a standard account.
The exact quote is returned by /v1/inspect before every call and held with headroom (1.5x the quote) on execution. The quote is the price floor: if the provider's actual cost overruns it, the run bills at about 1.5x cost, never above the hold. The unused part of every hold is released.
curl https://api.routergrowth.com/v1/run \ -H "Authorization: Bearer $ROUTERGROWTH_API_KEY" \ -d '{ "capability": "linkedin.search", "input": { }, "routing": {"provider": "auto"} }'
{
"properties": {
"account_id": {
"description": "From linkedin.account; optional when you have one account",
"type": "string"
},
"api": {
"default": "classic",
"enum": [
"classic",
"sales_navigator"
],
"type": "string"
},
"company": {
"description": "Current company names or LinkedIn company ids",
"items": {
"type": "string"
},
"type": "array"
},
"cursor": {
"description": "From the previous page",
"type": "string"
},
"industry": {
"items": {
"type": "string"
},
"type": "array"
},
"keywords": {
"description": "e.g. \"head of growth fintech\"",
"type": "string"
},
"limit": {
"default": 10,
"description": "Up to 100 (classic search returns 10 per page)",
"type": "integer"
},
"location": {
"description": "Place names (\"Lisbon\", \"France\") or LinkedIn location ids",
"items": {
"type": "string"
},
"type": "array"
},
"network_distance": {
"description": "1, 2 and/or 3",
"items": {
"type": "integer"
},
"type": "array"
},
"url": {
"description": "A LinkedIn people-search URL pasted from the browser; replaces the filters",
"type": "string"
}
},
"type": "object"
}
people · cursor