# Bolt Weather API

> Bolt Weather API is a paid API for AI agents from boltx402.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Returns current weather data for a specified city or geographic coordinates

## Facts

- Endpoint: POST https://boltx402.orbonomy.xyz/api/weather
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-weather-api-aedc831f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EpVKFS-zxnSBKdiliaBu8

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 bolt-weather-api-aedc831f -d '<json body>'
```

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

## When to prefer this

Use this endpoint when you need current weather data for a city by name or geographic coordinates and are operating in a pay-per-use x402 USDC micropayment context. Suitable for lightweight, single-location weather lookups without a subscription API key.

## Known failure modes

- Invalid or unrecognized city name returns error or empty data
- Missing both city and coordinates may return a validation error
- Coordinates out of valid range may fail lookup
- Payment failure (402) if USDC balance is insufficient
- Network timeout or server error returns non-200 status

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

A JSON object with a 'success' boolean and a 'data' object containing weather information for the requested city or coordinates.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string"
  },
  "latitude": {
   "type": "number"
  },
  "longitude": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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