LinkedIn Company Search API — Filter by Size & Industry
This is the discovery step. Give it a search query and optional filters — headcount band, industry, location — and it returns the matching companies as structured data, with name, URL, industry, headquarters, follower count and description.
{
"session_id": "2f88…",
"kind": "linkedin_company_search",
"searchQuery": "revenue operations software",
"human": "Found 2 matching companies…",
"machine": {
"total_items": 2,
"first_item": {
"name": "Acme Technologies",
"url": "https://www.linkedin.com/company/example",
"industry": "Software Development",
"headquarters": "Austin, Texas",
"followers": "18450",
"description": "Revenue infrastructure…"
}
},
"points_per_company": 5,
"total_points": 10
}- You send
- A search query, with optional size, industry and location filters
- You get back
- Matching companies with industry, headquarters and description
- Coverage
- Companies with a public profile, worldwide.
- Price
- 5 points per company — $5 per 1,000 companies
- Charged per company returned, so a search that matches nothing costs nothing.
Ways to get this data
Three approaches teams use today, and where each one runs into trouble.
| Approach | What it takes | Cost | Trade-off |
|---|---|---|---|
| Building the list by hand | Search, scroll, copy into a sheet | Free, and days of it | Stale the moment you finish, and impossible to repeat |
| Buying a list | A vendor, a contract, a CSV | Per record, usually with a minimum | Fixed at the moment of purchase, and you cannot re-run it with a tweaked filter |
| NeuralVerge | One request, filters as parameters | $5 per 1,000 companies returned | Broad queries return a lot — cap results with maxItems before you run one |
What you get back
Every field in the response shown above.
| Field | Type | Description |
|---|---|---|
total_items | number | How many companies came back. |
name | string | Company name. |
url | string | The company page URL. |
industry | string | Primary industry. |
headquarters | string | Where the company is based. |
followers | string | Follower count. |
description | string | Short company description. |
How to run it
The same lookup works from the app, the API, or as a tool an agent can call mid-task.
Only searchQuery is required; the filters are optional arrays. Set maxItems deliberately — you are charged per company returned, so an uncapped broad query is the expensive way to learn that.
curl -X POST https://api.neuralverge.ai/functions/v1/run-linkedin-company-search \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"searchQuery": "revenue operations software",
"companySize": ["51-200"],
"locations": ["United States"],
"maxItems": 50
}'What teams use it for
Where this field shows up in an actual workflow.
Turn a written ideal-customer definition into an actual list of companies.
Size a segment before you staff against it.
Re-run the same filters next quarter instead of buying the list again.
Count who is in a category and where they are based.
Coverage, freshness and limits
What this source covers, how fresh it is, and where it stops.
Companies with a public profile, worldwide.
Searched at request time.
This source returns publicly visible company information, stamped with a session id you can trace.
- —Search returns what matches the filters, which is not the same as everyone in a market.
- —Filter values follow the platform's own vocabulary, so a size band or industry label may not match yours exactly.
- —A broad query with no maxItems can return far more than you intended, and you pay per company.
Questions, answered
Per company returned, at 5 points each, rather than per request. The response carries points_per_company and total_points so you can reconcile a run exactly.
Related sources
Try linkedin company search on your own data
One request format across every source in the catalog.