Guest Filters/Search Companies (Public)
GET
/api/filters/companies/guestSearch Companies (Public)
Search company IDs using LinkedIn's public API. No authentication required.
Free
No authentication
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| keywords | string | Required | Comma-separated keywords to search |
Response Example
{
"filter_type": "COMPANY",
"keywords_queried": [
"google",
"microsoft"
],
"total_results": 20,
"results": [
{
"name": "Google",
"urn": "urn:li:organization:1441",
"id": "1441"
}
]
}Try it out
No API keys found. Create a key to use the playground.
Comma-separated keywords to search
Code Examples
curl -X GET "https://api.heyscraper.io/api/filters/companies/guest?keywords=%3Ckeywords%3E" \ -H "X-API-Key: hs_live_your_api_key"