# weather-now

> weather-now is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Fetches real-time weather conditions and forecasts for any global coordinate via Open-Meteo

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/weather-now
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/weather-now-b25efb03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iGMSS4CdMLkzKZddtvXuL

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-now-b25efb03
```

Example prompt: What's the current weather at coordinates 48.8566° N, 2.3522° E — give me temperature, wind speed, and any precipitation right now.

## When to prefer this

Choose this endpoint when you need real-time or near-term forecast weather data for any arbitrary global coordinate without registering for an API key. It is ideal for agents performing location-aware tasks, travel planning, outdoor activity decisions, or any workflow requiring live atmospheric conditions at a precise lat/lon. Prefer it over dedicated weather APIs when cost per call ($0.001 USDC) and zero-registration simplicity matter, and when Open-Meteo's global coverage is sufficient.

## Known failure modes

- Missing or invalid coordinates result in a bad request error
- Coordinates outside valid lat/lon range (-90 to 90, -180 to 180) may return errors
- Payment failure via x402 protocol blocks access
- Open-Meteo upstream unavailability causes service degradation
- Network timeout if upstream weather model is slow to respond

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

Returns real-time meteorological data for the requested coordinates, including current temperature, wind speed and direction, humidity, precipitation, and short-term forecast signals sourced from Open-Meteo's global weather model.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "lat": 39.9,
   "lon": 116.4,
   "wind": 6.3,
   "humidity": 69,
   "temperature": 25.1,
   "weather_code": 0
  },
  "source": "openmeteo",
  "data_type": "环境气象",
  "collected_at": "2026-08-09T18:05:29Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/weather-now-b25efb03/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
