ApiUncategorized
Search LinkedIn companies
Search for companies on LinkedIn by keywords and filters. Filter by headquarters location, industry, company size, and type. Useful for lead generation, market research, and finding potential business partners.
POST
/search/companiesSearch LinkedIn companies
Search for companies on LinkedIn by keywords and filters. Filter by headquarters location, industry, company size, and type. Useful for lead generation, market research, and finding potential business partners.
Authentication requiredSearch
Code Examples
curl -X POST '/linkedin/search/companies' \ -H 'Authorization: Bearer <your_api_key>' \ -H 'Content-Type: application/json' \ -d '{"accountId":"string","keywords":"","count":25,"start":0,"filters":{"locationId":null,"industry":["string"],"companySize":["string"],"companyType":["string"],"followedCompanies":false}}'Parameters
No parameters.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
accountId | string | No | LinkedIn account ID to use for the search. If not provided, uses the default account. |
keywords | string | No | Search keywords for company name or description |
count | number | No | Number of results to return per page |
start | number | No | Pagination offset (0-indexed) |
filters | object | No | Optional filters to narrow down search results |
Example
{
"accountId": "string",
"keywords": "",
"count": 25,
"start": 0,
"filters": {
"locationId": null,
"industry": [
"string"
],
"companySize": [
"string"
],
"companyType": [
"string"
],
"followedCompanies": false
}
}Responses
| Status | Description |
|---|---|
| 200 | Companies retrieved successfully |
