# Air Quality Hong Kong

> Air Quality Hong Kong is a paid API for AI agents from data.intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-17).

Returns current air quality data for Hong Kong including European and US AQI, PM2.5, PM10, ozone, NO2, SO2, CO, and a health label.

## Facts

- Endpoint: GET https://data.intel.rallylive.ca/data/air-quality/hong-kong
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-17
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/air-quality-hong-kong-bea52aa1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tHseILAKX6rRFgIu_zog6

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 air-quality-hong-kong-bea52aa1
```

Example prompt: What's the air quality like in Hong Kong right now — give me the AQI, PM2.5, and any health recommendations for going outside today?

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.01) snapshot of Hong Kong air quality with both European and US AQI standards plus a health label, especially for health or outdoor-activity decisions. It is purpose-built for Hong Kong and does not require location parameters, making it simpler than general-purpose air quality APIs. Prefer it over generic weather APIs that lack pollutant-level detail.

## Known failure modes

- Upstream Open-Meteo/CAMS data unavailable — may return stale or empty data
- Payment not processed (x402 protocol failure) — request blocked
- Network timeout from data.intel.rallylive.ca — no response
- Data model temporarily out of sync — pollutant values may be null or missing

## How this service works

Air quality in Hong Kong right now: European and US AQI, PM2.5, PM10, ozone, nitrogen dioxide, sulphur dioxide and carbon monoxide with a health label, from Open-Meteo Air Quality (CAMS). Outdoor-activity and health decisions for Hong Kong. $0.01 per call.

## Output

Returns real-time air quality metrics for Hong Kong including European AQI, US AQI, PM2.5, PM10, ground-level ozone, nitrogen dioxide, sulphur dioxide, and carbon monoxide concentrations, along with a human-readable health label (e.g. Good, Moderate, Unhealthy) sourced from Open-Meteo's CAMS-backed air quality model.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/air-quality-hong-kong-bea52aa1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from data.intel.rallylive.ca](https://www.zero.xyz/host/data.intel.rallylive.ca/llms.txt)
