Filters & Typeahead/Search Location IDs
GET/api/filters/geos

Search Location IDs

Get geographic location IDs for use in search filters.

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