# Bolt Weather API

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

Returns current weather data for a location specified by city name or geographic coordinates

## Facts

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

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

Example prompt: What's the current weather in Austin, Texas? I need the conditions right now — you can use the coordinates 30.2672, -97.7431 if that helps.

## When to prefer this

Choose this endpoint when you need quick, pay-per-use weather lookups without a subscription, especially in agentic workflows that need weather as a supporting data point. Useful when you want to avoid managing API keys for a dedicated weather service and can accept micro-payments in USDC via x402.

## Known failure modes

- Invalid or unrecognized city name returns error or empty data
- Missing both city and coordinates causes validation failure
- Out-of-range latitude/longitude values may return error
- Payment failure (x402) blocks request before processing
- Upstream weather data provider outage causes 5xx or empty response

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing current weather information for the requested location, including temperature, conditions, and other meteorological details.

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