# Weather Intelligence Bundle (weather-intel)

> Weather Intelligence Bundle (weather-intel) is a paid API for AI agents from store.cryptotradecalc.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns current conditions, 7-day forecast, air quality (European AQI/PM2.5/ozone), UV index, temperature anomaly z-score vs 30-day norm, and frost/heatwave/flood risk flags for any city or coordinates in a single call.

## Facts

- Endpoint: GET https://store.cryptotradecalc.com/api/weather-intel
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/weather-intelligence-bundle-weather-intel-4fae785c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CTuC5tfxbETOJub73mSWZ

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 weather-intelligence-bundle-weather-intel-4fae785c
```

Example prompt: Give me the full weather intelligence bundle for Paris — current conditions, the 7-day forecast, air quality including PM2.5 and ozone, UV index, how abnormal today's temperature is versus the 30-day norm, and any frost, heatwave, or flood risk flags.

## When to prefer this

Choose this endpoint when you need a comprehensive weather picture — current conditions, multi-day forecast, air quality, UV, anomaly scoring, and risk flags — all in one call. It is ideal when building dashboards, risk assessments, or agent workflows that would otherwise require chaining 4-5 separate weather API calls. Prefer it over sibling endpoints like 'forecast-aggregator' or 'air-quality-trend-oracle' when you need the combined data set rather than a specialized single-domain output.

## Known failure modes

- Unknown city name returns 404 or empty result — use a well-known city name or lat/lon coordinates instead
- Missing required 'city' query parameter returns 400 validation error
- Upstream weather data provider outage causes 503 or stale data
- Rate limiting or payment failure (402) if USDC payment is not processed correctly
- Ambiguous city name (e.g. 'Springfield') may resolve to wrong location — prefer lat/lon for precision

## How this service works

weather-intel: Weather Intelligence Bundle – ONE call returns current conditions, 7-day forecast, air quality (European AQI/PM2.5/ozone), UV, temperature anomaly vs 30-day norm (z-score), and frost/heatwave/flood risk flags for any city or lat/lon. Replaces 4-5 separate weather calls.

## Output

A single JSON response containing: current weather conditions, 7-day daily forecast, European AQI plus PM2.5 and ozone readings, UV index, a z-score representing temperature deviation from the 30-day historical norm, and boolean risk flags for frost, heatwave, and flood conditions — replacing what would otherwise require 4-5 separate API calls.

## 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": {
      "city": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/weather-intelligence-bundle-weather-intel-4fae785c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.cryptotradecalc.com](https://www.zero.xyz/host/store.cryptotradecalc.com/llms.txt)
