# Bolt Weather API

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

Returns current weather data for a given city name or geographic coordinates (latitude/longitude)

## Facts

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

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

Example prompt: What's the current weather in Austin, Texas? Use coordinates 30.27 latitude, -97.74 longitude if you need them.

## When to prefer this

Use this endpoint when you need quick, pay-per-request weather lookups without a subscription, and your agent runtime supports x402 USDC micropayments. Prefer it when you want to query weather by either city name or precise GPS coordinates with minimal setup.

## Known failure modes

- Missing both city and coordinates results in ambiguous or failed lookup
- Invalid city name returns empty or error data
- Out-of-range latitude/longitude values may cause lookup failure
- Payment failure (402) if USDC balance is insufficient
- Upstream weather provider downtime may return empty data object

## 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, including temperature and current conditions.

## 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-bf2e4cbf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bolt.orbonomy.xyz](https://www.zero.xyz/host/bolt.orbonomy.xyz/llms.txt)
