# Bolt Weather API

> Bolt Weather API is a paid API for AI agents from datault.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://datault.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-fa0e274c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4TFe9JMBYeouhMI5ToQ4-

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

Example prompt: What's the current weather in Chicago? Or if you have coordinates, use latitude 41.85 and longitude -87.65.

## When to prefer this

Use this endpoint when you need quick, per-request weather lookups for a named city or GPS coordinates, and you are operating in an x402/USDC micropayment context. Prefer this over a free-tier weather API if you need a pay-as-you-go model without API key management.

## Known failure modes

- Missing both city and coordinates returns an error
- Invalid city name may return empty or failed data
- Malformed latitude/longitude values may cause a bad request
- Payment failure (402) if USDC balance is insufficient
- Timeout if the upstream weather provider is unavailable

## 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 details for the requested city or coordinates. The exact weather fields (temperature, conditions, humidity, etc.) are nested inside the data object.

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