# Orbonomy Weather Forecast API

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

Returns a multi-day weather forecast for a given geographic coordinate using latitude, longitude, and number of forecast days

## Facts

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

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 orbonomy-weather-forecast-api-c1ca3294 -d '<json body>'
```

Example prompt: What's the weather forecast for the next 5 days at latitude 40.7128, longitude -74.0060?

## When to prefer this

Choose this endpoint when you need a pay-per-call, coordinate-based multi-day weather forecast without a subscription, especially in x402-enabled agent workflows where micropayments in USDC are acceptable. Good for one-off forecasts where you have precise lat/lon coordinates.

## Known failure modes

- Missing required fields (latitude, longitude, or days) returns a validation error
- Invalid coordinate values outside valid ranges may return an error
- Days value too large or negative may be rejected
- Payment not provided or insufficient USDC results in 402 payment required
- Server-side weather data unavailability returns a failure response

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

A JSON object with a success boolean and weather forecast data for the specified number of days at the given latitude/longitude coordinates.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "days",
  "latitude",
  "longitude"
 ],
 "properties": {
  "days": {
   "type": "integer"
  },
  "latitude": {
   "type": "number"
  },
  "longitude": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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