# ClimatePulse Wildfire Smoke & Air Quality Tracker

> ClimatePulse Wildfire Smoke & Air Quality Tracker is a paid API for AI agents from climatepulse.theaslangroupllc.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns AQI estimate, nearby active fires, health risk level, mask/indoor-air guidance, and evacuation status for a given location based on current wildfire smoke conditions.

## Facts

- Endpoint: GET https://climatepulse.theaslangroupllc.com/api/climate/smoke
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/climatepulse-wildfire-smoke-air-quality-tracker-6624527c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SBURmOoxgSzKfd15qTcFd

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability climatepulse-wildfire-smoke-air-quality-tracker-6624527c
```

Example prompt: Is there wildfire smoke affecting Portland, Oregon right now? I want to know the current AQI, whether there are active fires nearby, whether I should wear a mask, and if there are any evacuation orders in the area.

## When to prefer this

Choose this endpoint when the user's concern is specifically about wildfire smoke, active fires nearby, or smoke-driven air quality — as opposed to general AQI from urban pollution. It bundles evacuation status and actionable health guidance (mask use, staying indoors) alongside the AQI, making it ideal for safety-critical wildfire scenarios rather than routine air quality checks.

## Known failure modes

- Location not found or invalid coordinates — returns 400 or error body
- No smoke or fire data available for remote/unmonitored regions
- Stale fire data if upstream fire databases have not updated recently
- Payment not accepted — 402 response if USDC payment is not correctly attached
- Rate limit exceeded — 429 if too many calls in a short window

## How this service works

Is wildfire smoke affecting the air here right now? Smoke tracker — AQI estimate, nearby active fires, health risk level, mask and indoor-air guidance, and evacuation status for any location.

## Output

Returns a real-time wildfire smoke assessment including: AQI estimate for the queried location, list or count of nearby active fires, overall health risk level (e.g. good/moderate/unhealthy), specific mask-wearing recommendations, indoor air quality guidance, and current evacuation status or alerts.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location"
 ],
 "properties": {
  "lang": {
   "type": "string",
   "description": "Response language code (e.g. es, fr, de); defaults to English"
  },
  "location": {
   "type": "string",
   "description": "City, address, or lat,lon to check for wildfire smoke"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "outlook": "Smoke expected to persist through the week unless winds shift",
  "location": "Sacramento, CA",
  "data_note": "Synthesized from current regional fire and air-quality reporting",
  "mask_type": "N95 or KN95",
  "affiliates": {
   "n95_masks": "https://www.amazon.com/s?k=n95+mask",
   "air_purifier": "https://www.amazon.com/s?k=hepa+air+purifier"
  },
  "disclaimer": "General environmental guidance, not personalized medical advice.",
  "aqi_category": "Unhealthy",
  "generated_at": "2026-07-03T12:00:00.000Z",
  "primary_cause": "wildfire",
  "smoke_present": true,
  "evacuation_status": "watch area",
  "health_risk_level": "high",
  "tracking_resources": [
   "airnow.gov",
   "InciWeb (inciweb.nwcg.gov)"
  ],
  "active_fires_nearby": "Two active wildfires burning in the foothills roughly 40 miles northeast",
  "evacuation_guidance": "No evacuation order yet; keep essentials packed and monitor local alerts",
  "mask_recommendation": "recommended",
  "protective_measures": [
   "Wear a properly fitted N95/KN95 outdoors",
   "Run a HEPA air purifier indoors"
  ],
  "current_aqi_estimate": 168,
  "indoor_recommendations": [
   "Keep windows and doors closed",
   "Set HVAC to recirculate with a MERV-13+ filter"
  ],
  "general_public_guidance": "Avoid prolonged outdoor exertion; limit time outside",
  "sensitive_group_guidance": "Stay indoors with windows closed; run a HEPA air purifier; wear an N95 if you must go outside"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/climatepulse-wildfire-smoke-air-quality-tracker-6624527c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from climatepulse.theaslangroupllc.com](https://www.zero.xyz/host/climatepulse.theaslangroupllc.com/llms.txt)
