Guest Filters/Search Job Titles (Public)
GET/api/filters/titles/guest

Search Job Titles (Public)

Search job titles using LinkedIn's public API. Client-side filtering applied.

Free
No authentication
Parameters
NameTypeRequiredDescription
keywordsstringRequiredComma-separated keywords to search
Response Example
{
  "filter_type": "TITLE",
  "keywords_queried": [
    "software engineer"
  ],
  "total_results": 10,
  "results": [
    {
      "name": "Software Engineer",
      "urn": "urn:li:title:9",
      "id": "9"
    }
  ]
}
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/titles/guest?keywords=%3Ckeywords%3E" \
  -H "X-API-Key: hs_live_your_api_key"