# whatchuneed Weather API

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

Retrieves weather data and forecasts for a given location or query via a pay-per-call endpoint powered by the x402 protocol

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/crawl/weather
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-weather-api-ee4955db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cu3kgJVcMEtvXDirRs2hR

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-api-ee4955db -d '<json body>'
```

Example prompt: What's the current weather and 5-day forecast for Chicago — give me temperature, precipitation chances, and general conditions?

## When to prefer this

Choose this endpoint when you need quick, pay-per-call weather lookups without managing a separate weather API subscription. It is ideal for AI agents operating within the x402 payment ecosystem that need weather data as one of many capabilities without juggling multiple API keys. Prefer it for ad-hoc, low-volume weather queries where a full weather API integration is overkill.

## Known failure modes

- Vague or unrecognizable location input may return empty or irrelevant results
- Payment failure via x402 protocol prevents endpoint from being reached
- Malformed input string may result in an error status response
- Upstream weather data provider downtime may cause delayed or failed responses
- Very specific or rare location names may not resolve correctly

## 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

Returns a result object containing weather data for the queried location, which may include current conditions, temperature, precipitation, forecast, and other meteorological details depending on the query, along with a status field indicating success or failure.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Request input"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "result": {
   "type": "object",
   "description": "Response data"
  },
  "status": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-weather-api-ee4955db/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)
