Filters & Typeahead/Search Job Functions
GET/api/filters/job-functions

Search Job Functions

Get job function IDs for use in job search filters.

Free
Authentication required
Parameters
NameTypeRequiredDescription
keywordsstringRequiredComma-separated keywords to search
Response Example
{
  "filter_type": "JOB_FUNCTION",
  "total_results": 5,
  "results": [
    {
      "name": "Engineering",
      "id": "eng",
      "urn": "urn:li:jobFunction:eng"
    }
  ]
}
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/job-functions?keywords=%3Ckeywords%3E" \
  -H "X-API-Key: hs_live_your_api_key"