# Agent Data API – Live Weather

> Agent Data API – Live Weather is a paid API for AI agents from agent-data-api-ui1c.onrender.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns current weather conditions for a given location (by coordinates or city name), paid per-call via x402/USDC.

## Facts

- Endpoint: GET https://agent-data-api-ui1c.onrender.com/live/weather
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-data-api-live-weather-8f3031cd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LCsSEg8eVTKASTGEq4Tow

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 agent-data-api-live-weather-8f3031cd
```

Example prompt: What's the current weather in Tokyo right now? Just give me the live conditions — temperature, description, that sort of thing.

## When to prefer this

Choose this endpoint when you need a simple, pay-per-call weather lookup without subscription overhead, particularly inside an AI agent pipeline that already supports x402/USDC micropayments. It is well-suited for one-off or low-frequency queries by coordinates or city name. Prefer alternatives if you need forecasts (multi-day), historical data, or high-volume weather polling.

## Known failure modes

- Missing or invalid location parameters (no lat/lon and no city provided) — likely returns 400 or error JSON
- Unrecognized city name — may return an empty result or error
- Payment failure or insufficient USDC balance — x402 payment protocol rejects the call
- Upstream weather data source unavailable — may return 503 or timeout
- Rate limiting or server-side overload on the Render-hosted instance — may return 429 or 503

## How this service works

Pay-per-call data services for AI agents: web extraction (text, Markdown, metadata), PDF-to-text, RSS/Atom parsing, FX and crypto prices, weather, DNS and email validation. All paid endpoints use the x402 payment protocol (USDC).

## Output

Returns current weather data for the requested location, including temperature, weather description/conditions, and associated location metadata. Response is delivered as structured JSON and billed at $0.005 USDC per call via the x402 payment protocol.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "string",
   "description": "Latitude"
  },
  "lon": {
   "type": "string",
   "description": "Longitude"
  },
  "city": {
   "type": "string",
   "description": "City name (alternative to lat/lon)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-data-api-live-weather-8f3031cd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-data-api-ui1c.onrender.com](https://www.zero.xyz/host/agent-data-api-ui1c.onrender.com/llms.txt)
