Skip to main content
GET
/
environment
/
industrial-proximity
Industrial Proximity Score
curl --request GET \
  --url https://api.ihuus.com/v1/environment/industrial-proximity \
  --header 'Authorization: Bearer <token>'
{
  "result": {
    "score": 123,
    "description": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.ihuus.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your access token or API key. Pass as Authorization: Bearer <token>.

Query Parameters

lat
number
required

The latitude of the location in decimal degrees (WGS 84). Must be between -90 and 90.

Required range: -90 <= x <= 90
lon
number
required

The longitude of the location in decimal degrees (WGS 84). Must be between -180 and 180.

Required range: -180 <= x <= 180

Response

Successful Response

API response for an Industrial Proximity lookup.

result
IndustrialProximityResult · object
required

The Industrial Proximity result. A score of 0 means no imagery, hazard, or POI data is available for the given coordinates.

Example:
{
"description": "Mostly residential: occasional light commercial; no significant industrial presence detected.",
"score": 218
}