Filters & Typeahead/Search LinkedIn Groups
GET
/api/filters/groupsSearch LinkedIn Groups
Get LinkedIn group IDs for use in filters. Returns group logo and info.
Free
Authentication required
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| keywords | string | Required | Comma-separated keywords to search |
Response Example
{
"filter_type": "GROUP",
"total_results": 5,
"results": [
{
"name": "Python Developers Community",
"id": "12345",
"urn": "urn:li:group:12345",
"image_url": "https://media.licdn.com/dms/image/..."
}
]
}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/groups?keywords=%3Ckeywords%3E" \ -H "X-API-Key: hs_live_your_api_key"