# SixPath Weather Forecast

> SixPath Weather Forecast is a paid API for AI agents from sixpath.vercel.app, paid per call via x402, $0.071885/call, status unknown (last checked 2026-09-14).

Returns a multi-day weather forecast for a given geographic coordinate (latitude/longitude) and number of days ahead.

## Facts

- Endpoint: POST https://sixpath.vercel.app/api/weather-forecast
- Price: $0.071885/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sixpath-weather-forecast-c89364db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x-kW38XxO3PgGvJLN9hfM

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 sixpath-weather-forecast-c89364db -d '<json body>'
```

Example prompt: Can you get me a 5-day weather forecast for coordinates 37.7749 latitude and -122.4194 longitude?

## When to prefer this

Choose this endpoint when you need a pay-per-call weather forecast by geographic coordinates (lat/lon) with no subscription required, billed via x402 on Base chain. Suitable for agentic workflows that need on-demand, per-query weather lookups without maintaining a subscription to a dedicated weather API.

## Known failure modes

- Invalid or missing lat/lon values result in an error response
- Non-numeric string values for lat/lon may cause malformed requests
- Requesting too many days ahead may exceed provider data range
- Payment failure via x402 protocol results in 402 response blocking the call
- Upstream weather provider outage yields no data or partial response

## How this service works

All-in-one API hub: Social Media, Jobs, Finance, Crypto, and Tools. Pay-per-call with x402 protocol on Base chain.

## Output

A JSON object containing multi-day weather forecast data for the specified latitude/longitude, including predicted conditions, temperatures, and other meteorological details for the number of days requested.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lat": {
   "type": "string"
  },
  "lon": {
   "type": "string"
  },
  "days": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

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