# Orbonomy Weather Forecast API

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

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

## Facts

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

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

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

## When to prefer this

Use this endpoint when you need a pay-per-call weather forecast keyed by precise geographic coordinates (latitude/longitude) and want a specific number of forecast days. It is suitable for agents that need programmatic, on-demand weather data without a monthly subscription. Prefer it when you already have coordinate data rather than a city name, and when micro-cost per-call pricing via USDC is acceptable.

## Known failure modes

- Missing required fields (days, latitude, or longitude) — likely returns 400 or error payload
- Invalid coordinate values outside valid range — may return error or unexpected results
- Payment failure via x402 protocol — endpoint returns 402 Payment Required if funds are insufficient
- days value out of supported range — endpoint may reject or return partial data
- Network or upstream weather data provider unavailability — may return 500 or success:false

## How this service works

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

## Output

Returns a JSON object with a success boolean and (presumably) weather forecast data for the requested number of days at the given coordinates. The full weather payload structure is not documented beyond the top-level success field.

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