Skip to main content
GET
/
v1
/
locations
/
{geo_id}
Get location detail for a geo ID
curl --request GET \
  --url https://api.homelogs.io/v1/locations/{geo_id} \
  --header 'X-API-Key: <api-key>'
{
  "geo_id": "<string>",
  "geo_type": "property",
  "display_name": "<string>",
  "full_address": "<string>",
  "state": "<string>",
  "county": "<string>",
  "city": "<string>",
  "zipcode": "<string>",
  "jurisdiction": "<string>",
  "lat": 123,
  "lon": 123,
  "permit_count": 1,
  "latest_permit_date": "2023-12-25"
}
Returns the canonical metadata for one geo_id (name, type, hierarchy context). Use this to confirm exactly which geography the client selected before fetching permits or signals.

Authorizations

X-API-Key
string
header
required

Path Parameters

geo_id
string
required

Location identity token.

Example:

"geo_city_0200d4df17d3b8cd84c6"

Response

Location anchor details.

geo_id
string
required
geo_type
enum<string>
required
Available options:
property,
jurisdiction,
city,
zip,
county,
state
display_name
string
required
full_address
string
state
string
county
string
city
string
zipcode
string
jurisdiction
string
lat
number
lon
number
permit_count
integer
Required range: x >= 0
latest_permit_date
string<date>