# ClimatePulse Wildfire Smoke Tracker

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

Returns wildfire smoke conditions, health guidance, and evacuation status for a given location

## Facts

- Endpoint: GET https://climatepulse-six.vercel.app/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-tracker-02e84c88
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AtOnxDrHG1-nhVrqmMnCj

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-tracker-02e84c88
```

Example prompt: Can you check the current wildfire smoke conditions in Boise, Idaho and tell me if it's safe to be outside — include any evacuation status or health warnings?

## When to prefer this

Choose this endpoint when the user's concern is specifically wildfire smoke — distinct from general air quality (AQI) or severe weather. Best for health and safety agents needing smoke severity, health advisories, and evacuation status tied to wildfire events rather than general pollution or weather alerts.

## Known failure modes

- Location not found or unresolvable — returns error indicating invalid location
- No smoke data available for remote or unsupported regions
- Upstream smoke/satellite data unavailable — may return stale or missing data
- Payment not processed — x402 payment required before data is returned
- Rate limit exceeded for the endpoint

## 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 current wildfire smoke conditions for the requested location, including smoke density or severity, health guidance (e.g. stay indoors, wear a mask), and any active evacuation status or emergency advisories related to wildfire activity.

## 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-tracker-02e84c88/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from climatepulse-six.vercel.app](https://www.zero.xyz/host/climatepulse-six.vercel.app/llms.txt)
