# Orbonomy Weather Forecast API

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

Returns a multi-day weather forecast for a given geographic coordinate pair

## Facts

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

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

Example prompt: Can you get me a 5-day weather forecast for the coordinates 40.7128° N, 74.0060° W — that's New York City?

## When to prefer this

Use this endpoint when you need a pay-per-call weather forecast by geographic coordinates without committing to a subscription, especially in agentic or automated workflows using the x402 micropayment protocol. Suitable for one-off lookups or when integrating weather data alongside other Orbonomy data services.

## Known failure modes

- Invalid or out-of-range latitude/longitude values — likely returns a 400 or error in the success field
- Missing required fields (latitude, longitude, or days) cause request rejection
- days value out of supported range may return an error
- Payment failure via x402 protocol results in 402 response before data is returned
- Coordinates in remote areas with no weather station coverage may return incomplete data

## 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 (implied by the service description) structured weather forecast data for the requested number of days at the specified latitude and 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-203b6b64/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orbonomy.xyz](https://www.zero.xyz/host/orbonomy.xyz/llms.txt)
