# whatchuneed Weather Lookup

> whatchuneed Weather Lookup is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns current weather conditions (temperature, humidity, wind speed, condition) for a given location string

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/util/weather
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-weather-lookup-c0cd5424
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ezl5K4ATayCZvuhYHYBFn

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 whatchuneed-weather-lookup-c0cd5424 -d '<json body>'
```

Example prompt: What's the current weather in San Francisco — temperature, humidity, and wind speed?

## When to prefer this

Use this endpoint when you need lightweight, pay-per-call current weather data for a named location without managing API keys for major weather providers. Ideal for AI agents needing a quick one-shot weather lookup billed in USDC via x402 protocol, with no subscription or registration required.

## Known failure modes

- Unrecognized or ambiguous location string returns an error or empty result
- Location with multiple matches may resolve to an unexpected city
- Network or upstream weather data source unavailability returns a 5xx error
- Missing required 'location' field in request body returns a 400 validation error

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

A JSON object containing: location (string), temperature (number), unit (string, e.g. Celsius or Fahrenheit), humidity (integer percent), wind_speed (number), and condition (string describing sky/weather state, e.g. 'Sunny', 'Cloudy', 'Rainy').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "location"
 ],
 "properties": {
  "location": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "unit": {
   "type": "string"
  },
  "humidity": {
   "type": "integer"
  },
  "location": {
   "type": "string"
  },
  "condition": {
   "type": "string"
  },
  "wind_speed": {
   "type": "number"
  },
  "temperature": {
   "type": "number"
  }
 }
}
```

## More

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