Provenance
Freshness & coverage
Methods (5)
searchAirQualitySites
readCDPHE APCD facilities (~15.7K) + CCND monitors (~359). Filter facility/parameter/bbox/near.
Input schema
{ "type": "object", "properties": { "facility": { "type": "string" }, "parameter": { "type": "string" }, "includeMonitors": { "type": "boolean" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }Air facility schema lean — NO county filter (silently drops). Use bbox/near.
searchHazardousWasteFacilities
readCDPHE RCRA Active Hazardous Waste Handlers (~6.1K). Filter county/handlerName/generatorStatus.
Input schema
{ "type": "object", "properties": { "county": { "type": "string", "examples": [ "Adams" ] }, "handlerName": { "type": "string" }, "generatorStatus": { "type": "string", "examples": [ "LQG" ] }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }Generator_Status: VSG/SQG/N/LQG. County stored UPPERCASE.
searchVoluntaryCleanup
readCDPHE VCUP + NAD voluntary cleanup applications (~1.7K). Filter site/application/appStatus.
Input schema
{ "type": "object", "properties": { "site": { "type": "string" }, "application": { "type": "string", "examples": [ "VCUP" ], "oneOf": [ { "type": "string", "enum": [ "NAD" ] }, { "type": "string", "enum": [ "VCUP" ] } ] }, "appStatus": { "type": "string", "examples": [ "APPROVAL" ] }, "city": { "type": "string" }, "zip": { "type": "number" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }Field names abbreviated (CityNam, RV_Nmbr). x=0/y=0 → null lat/lon.
searchSuperfundSites
readCDPHE Superfund / NPL polygon sites (~31) (CO Department of Public Health & Environment).
Input schema
{ "type": "object", "properties": { "name": { "type": "string" }, "siteStatus": { "type": "string", "examples": [ "NPL ACTIVE" ] }, "city": { "type": "string" }, "bbox": { "type": "array", "items": { "type": "number" } }, "near": { "type": "object", "properties": { "lat": { "type": "number" }, "lon": { "type": "number" }, "radiusMiles": { "type": "number" } }, "required": [ "lat", "lon", "radiusMiles" ], "additionalProperties": false }, "limit": { "type": "number" }, "format": { "oneOf": [ { "type": "string", "enum": [ "records" ] }, { "type": "string", "enum": [ "geojson" ] } ] } }, "additionalProperties": false }Polygon geometry — handler returns centroid lat/lon.
getServiceInfo
readColorado CDPHE health and environment service catalog: schemas + record counts (5 services).
Input schema
{ "type": "object", "properties": { "service": { "type": "string", "examples": [ "rcra" ] } }, "additionalProperties": false }
