# klymax402 Weather API

> klymax402 Weather API is a paid API for AI agents from klymax402.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns current weather conditions and forecast for a given city name or geographic coordinates

## Facts

- Endpoint: GET https://klymax402.com/api/weather-api/api/weather
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-weather-api-fbc7b16f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_q7_ZqzVXc5pg1Ov-EhghN

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 klymax402-weather-api-fbc7b16f
```

Example prompt: What's the current weather and forecast in Berlin? I can also give you the coordinates — latitude 52.52, longitude 13.40 — if that's easier.

## When to prefer this

Choose this endpoint when you need quick, pay-per-call weather lookups without managing API keys — ideal for AI agents that need weather data infrequently or across diverse workflows, and are already using USDC on Base for micropayments via the x402 protocol.

## Known failure modes

- City name not recognized or ambiguous — may return wrong location or error
- Latitude/longitude out of valid range (-90 to 90 / -180 to 180) — validation error
- Missing both city and coordinates — request rejected
- Payment failure via x402/USDC — 402 response returned
- Upstream weather data provider outage — may return stale or empty data

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

A JSON object containing current weather conditions (temperature, humidity, wind, etc.), a forecast array with future periods, and a location object confirming the resolved geographic location.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string",
   "description": "City name (alternative to lat/lon, uses geocoding)"
  },
  "latitude": {
   "type": "number",
   "description": "Latitude (-90 to 90)"
  },
  "longitude": {
   "type": "number",
   "description": "Longitude (-180 to 180)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "current": {},
  "forecast": [],
  "location": {}
 }
}
```

## More

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