# Bolt Weather API

> Bolt Weather API is a paid API for AI agents from deltadata.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 or geographic coordinates

## Facts

- Endpoint: POST https://deltadata.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-7784f988
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OwVujkShmz6T-twR7gIdK

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

Example prompt: What's the current weather in San Francisco? Or if you have the coordinates, I'm at latitude 37.7749 and longitude -122.4194.

## When to prefer this

Use this endpoint when you need weather data for a specific city by name or by geographic coordinates (latitude/longitude), paid per-request via USDC. Good for agents that need lightweight, on-demand weather lookups without a subscription model.

## Known failure modes

- City name not found or unrecognized — returns success: false or empty data
- Missing both city and coordinates — ambiguous or failed lookup
- Invalid latitude/longitude values out of range — lookup failure
- Upstream weather data provider unavailable — service error
- Malformed request body — missing required fields

## 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, such as temperature, conditions, and related meteorological data.

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