Provenance
PublisherEPA AQS Air Quality
API basehttps://aqs.epa.gov/data/api
Freshness & coverage
FreshnessFreshness not declared
GeographicNot declared
TemporalNot declared
AuthenticationCredentials required (API key)
Methods (2)
getAqsMonitors
readList AQS monitors by state FIPS, parameter, and date range.
Input schema
{ "type": "object", "properties": { "state": { "type": "string", "pattern": "^\\d{2}$" }, "param": { "type": "string", "minLength": 1 }, "bdate": { "type": "string", "pattern": "^\\d{8}$" }, "edate": { "type": "string", "pattern": "^\\d{8}$" } }, "additionalProperties": false, "required": [ "state", "param", "bdate", "edate" ] }getAqsData
readGet AQS daily measurements by state FIPS, parameter, and date range.
Input schema
{ "type": "object", "properties": { "state": { "type": "string", "pattern": "^\\d{2}$" }, "param": { "type": "string", "minLength": 1 }, "bdate": { "type": "string", "pattern": "^\\d{8}$" }, "edate": { "type": "string", "pattern": "^\\d{8}$" } }, "additionalProperties": false, "required": [ "state", "param", "bdate", "edate" ] }
