Search Companies
Search LinkedIn companies with various filters
POST
/linkedin/search/companiesSearch Companies
Search LinkedIn companies with various filters
Authentication requiredLinkedIn Search
Code Examples
curl -X POST 'https://api.connectsafely.ai/linkedin/search/companies' \ -H 'Authorization: Bearer <your_api_key>' \ -H 'Content-Type: application/json' \ -d '{"keywords":"technology"}'Parameters
No parameters.
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
accountId | string | No | |
keywords | string | No | |
count | number | No | |
start | number | No | |
filters | object | No |
Example
{
"keywords": "technology"
}Responses
| Status | Description |
|---|---|
| 200 | Successful response |
200 Example
{
"success": true,
"companies": [
{
"companyId": "12345",
"name": "Tech Company Inc",
"universalName": "techcompany",
"headline": "Leading Technology Solutions",
"industry": "Technology",
"followerCount": 50000,
"employeeCount": "1001-5000",
"companyUrl": "https://www.linkedin.com/company/12345/"
}
],
"pagination": {
"count": 25,
"start": 0,
"total": 500
},
"hasMore": true
}