# North Desk Weather API

> North Desk Weather API is a paid API for AI agents from annotated-pentium-lib-storm.trycloudflare.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns current weather conditions for a given city name or latitude/longitude coordinates

## Facts

- Endpoint: GET https://annotated-pentium-lib-storm.trycloudflare.com/v1/weather
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/north-desk-weather-api-f5b027ec
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZPNjGXleljFWRtMJ-Bt8s

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 north-desk-weather-api-f5b027ec
```

Example prompt: What's the current weather in San Francisco? Or if you have coordinates, check the weather at latitude 37.77 and longitude -122.42.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call current weather lookup without a subscription or API key — ideal for agents making occasional weather queries and paying per use via USDC on Solana or Base. Best for single-location current conditions rather than forecasts or historical data.

## Known failure modes

- Invalid or unrecognized city name returns an error
- Missing both city and lat/lon parameters results in a bad request
- Network or upstream weather data provider outage
- Payment failure if USDC balance is insufficient on Solana or Base
- Ambiguous city name (multiple cities with same name) may return unexpected results

## How this service works

Current weather by city or lat/lon. $0.001 USDC on Solana or Base.

## Output

Current weather data for the requested location, including conditions such as temperature, weather description, and other meteorological details for the specified city or lat/lon coordinates.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "number"
  },
  "lon": {
   "type": "number"
  },
  "city": {
   "type": "string",
   "description": "City name"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/north-desk-weather-api-f5b027ec/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from annotated-pentium-lib-storm.trycloudflare.com](https://www.zero.xyz/host/annotated-pentium-lib-storm.trycloudflare.com/llms.txt)
