# X402 Hub Easy Weather

> X402 Hub Easy Weather is a paid API for AI agents from x402-hub.vercel.app, paid per call via x402, $0.075/call, status unknown (last checked 2026-09-15).

Returns current weather data for a given location query via a micropayment-gated API endpoint on Base

## Facts

- Endpoint: POST https://x402-hub.vercel.app/api/easy-weather
- Price: $0.075/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-hub-easy-weather-ed0f039f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6nVZpWG6rw7YlQGOCb-6X

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 x402-hub-easy-weather-ed0f039f -d '<json body>'
```

Example prompt: What's the current weather in San Francisco? I need the temperature and conditions right now.

## When to prefer this

Choose this endpoint when you need a simple, pay-per-use weather lookup without managing API keys or subscriptions. It is well-suited for AI agents that need occasional weather data on Base using x402 micropayments at $0.075 USDC per call, avoiding the overhead of signing up for a dedicated weather API service.

## Known failure modes

- Empty or ambiguous query string returns unclear results
- Unknown or misspelled location may yield no data or wrong location match
- Upstream weather API unavailability causes failure
- Payment failure or insufficient USDC balance returns 402 error
- Rate limits or network timeouts from the upstream provider

## How this service works

63 paid API endpoints protected by x402 micropayments on Base

## Output

Returns a data object containing weather information for the queried location, including current conditions such as temperature, weather description, humidity, and other meteorological data from an upstream weather API.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Query parameter for the API"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "description": "Response data from upstream API"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-hub-easy-weather-ed0f039f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-hub.vercel.app](https://www.zero.xyz/host/x402-hub.vercel.app/llms.txt)
