# Orbonomy Weather Forecast API

> Orbonomy Weather Forecast API is a paid API for AI agents from main.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 latitude/longitude coordinate pair

## Facts

- Endpoint: POST https://main.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-6af2cd8a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xn1t9OgVoNJsXHrf7D-vy

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

Example prompt: Can you get me a 5-day weather forecast for the coordinates 40.7128° N, 74.0060° W?

## When to prefer this

Choose this endpoint when you need a pay-per-call weather forecast by geographic coordinates and want to avoid subscription-based weather APIs. Suitable for agents making occasional weather lookups without a standing API subscription. Best for location-specific forecasts where you already have latitude/longitude available.

## Known failure modes

- Missing required fields (latitude, longitude, or days) returns a validation error
- Invalid coordinate values outside valid range may return an error
- Payment failure via x402 protocol returns 402 Payment Required
- days value out of supported range may return an error or empty data
- Network or server unavailability returns 5xx error

## 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 presumably weather forecast data (temperature, conditions, etc.) for the requested number of days at the given coordinates, paid via x402 at $0.05 USDC per call.

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