# ClimatePulse Air Quality Index (AQI) & Health Guidance

> ClimatePulse Air Quality Index (AQI) & Health Guidance 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-14).

Returns real-time AQI with PM2.5, PM10, and ozone breakdown plus activity and health guidance tailored by population group (asthma, COPD, heart disease, pregnancy, children)

## Facts

- Endpoint: GET https://climatepulse.theaslangroupllc.com/api/climate/air
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/climatepulse-air-quality-index-aqi-health-guidance-109e1981
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y69QUX_pbz-qDPg9f3Hsk

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-air-quality-index-aqi-health-guidance-109e1981
```

Example prompt: What's the air quality like right now in Denver? I have asthma — is it safe to go for a run outside, and do I need an N95?

## When to prefer this

Use this endpoint when a user needs real-time AQI data with health-specific guidance, especially when the user has a medical condition (asthma, COPD, heart disease, pregnancy) or is asking about outdoor activity safety for vulnerable groups like children. Prefer over generic weather endpoints when the specific concern is air pollution, particulate matter, or ozone rather than temperature or precipitation.

## Known failure modes

- Location not found or unresolvable — returns error with no AQI data
- Air quality sensor data unavailable for requested location — returns null or estimated fallback
- Invalid parameter format (e.g. malformed coordinates) — returns 400 bad request
- Service temporarily unavailable — returns 503

## How this service works

Is it safe to exercise outside today? Real-time AQI with primary-pollutant breakdown (PM2.5, PM10, ozone), activity guidance by population group, N95/air-purifier recommendations, and condition-specific guidance for asthma, COPD, heart disease, pregnancy, and kids.

## Output

Returns the current AQI score and primary pollutant (PM2.5, PM10, or ozone) with concentration levels, a go/no-go outdoor activity recommendation, N95 and air purifier recommendations, and tailored health guidance for specific conditions including asthma, COPD, heart disease, pregnancy, and children.

## 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 air quality for"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "location": "Los Angeles, CA",
  "aqi_trend": "stable",
  "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.",
  "current_aqi": 92,
  "smoke_notes": null,
  "aqi_category": "Moderate",
  "generated_at": "2026-07-03T12:00:00.000Z",
  "health_message": "Air quality is acceptable for most people; sensitive groups should reduce prolonged or heavy outdoor exertion this afternoon.",
  "data_source_note": "Synthesized from current regional air-quality reporting",
  "activity_guidance": {
   "general_public": "No restrictions",
   "children_outdoor": "Normal outdoor play is fine",
   "outdoor_exercise": "Fine for most; sensitive individuals should shorten prolonged, high-intensity outdoor exercise",
   "sensitive_groups": "Asthma/COPD/heart disease: reduce prolonged exertion, especially mid-afternoon when ozone peaks",
   "sports_activities": "Proceed as planned; move strenuous drills to morning if possible"
  },
  "primary_pollutant": "Ozone",
  "protective_measures": [
   "Exercise before noon to avoid peak ozone",
   "Sensitive groups keep rescue inhaler on hand"
  ],
  "pollen_and_allergens": {
   "tree_pollen_season": "Not in season this time of year in this region"
  },
  "indoor_recommendations": [
   "Windows can stay open; no purifier needed at this level"
  ],
  "wildfire_smoke_present": false,
  "best_time_to_exercise_today": "Before 11 AM, ahead of the afternoon ozone peak",
  "health_condition_specific_guidance": {
   "asthma": "Keep rescue inhaler accessible; no restriction needed below AQI 100"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/climatepulse-air-quality-index-aqi-health-guidance-109e1981/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)
