Guest Filters/Search Locations (Public)
GET
/api/filters/geos/guestSearch Locations (Public)
Search geographic locations using LinkedIn's public API.
Free
No authentication
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| keywords | string | Required | Comma-separated keywords to search |
| geo_type | string | Optional | Type of location: city, country, state, county, metroDefault: city |
Response Example
{
"filter_type": "GEO",
"keywords_queried": [
"new york"
],
"total_results": 10,
"results": [
{
"name": "New York, New York, United States",
"urn": "urn:li:geo:102571732",
"id": "102571732"
}
]
}Try it out
No API keys found. Create a key to use the playground.
Comma-separated keywords to search
Type of location: city, country, state, county, metro
Code Examples
curl -X GET "https://api.heyscraper.io/api/filters/geos/guest?keywords=%3Ckeywords%3E" \ -H "X-API-Key: hs_live_your_api_key"