# Orbonomy Weather Forecast API

> Orbonomy Weather Forecast API is a paid API for AI agents from app.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://app.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-b4cf3d80
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VBhc2ZhJB3mAwd97rbSEE

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

Example prompt: Can you get me the 5-day weather forecast for the coordinates 40.7128° N, 74.0060° W (New York City)?

## When to prefer this

Use this endpoint when you need coordinate-based multi-day weather forecasting via a pay-per-call micropayment model (x402/USDC), and do not want to maintain a subscription to a dedicated weather API. Useful for agent workflows that occasionally need weather data without a standing API key commitment.

## Known failure modes

- Invalid or out-of-range latitude/longitude values causing a failed lookup
- Missing required fields (days, latitude, or longitude) returning a 400 or validation error
- days parameter set to 0 or negative causing invalid request
- Coordinates in remote or unsupported geographic regions returning no data
- Payment failure via x402 protocol blocking the request
- Service downtime or upstream weather data provider unavailability

## 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 specified number of days at the given latitude/longitude coordinates. The response schema is minimal — success indicates whether the call was successful, with forecast details in the payload.

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