# Global Weather Forecast by Coordinates

> Global Weather Forecast by Coordinates is a paid API for AI agents from store.agentexchange.work, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns global weather forecast data for a given latitude/longitude coordinate pair using open meteorological data

## Facts

- Endpoint: GET https://store.agentexchange.work/weather/forecast
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/global-weather-forecast-by-coordinates-ea4298f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T70g4_dyix-4JPaVAIPDB

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 global-weather-forecast-by-coordinates-ea4298f4
```

Example prompt: What's the weather forecast for the coordinates 40.7128 latitude, -74.0060 longitude?

## When to prefer this

Use this endpoint when you need a quick, machine-payable weather forecast lookup by geographic coordinates without requiring an API key or account setup. Particularly well-suited for AI agents that need to enrich logistics, agricultural, or event planning workflows with weather data on a per-call basis at low cost ($0.49 USDC).

## Known failure modes

- Missing latitude or longitude parameters returns a 400 bad request error
- Invalid coordinate values outside valid ranges may return an error or unexpected results
- Service unavailable or upstream meteorological data outage returns a 5xx error
- Payment failure (x402) if USDC balance is insufficient returns a 402 Payment Required
- Rate limiting may occur if too many requests are made in a short period

## How this service works

Aggregates global weather forecasts using open meteorological data. Useful for supply-chain routing, event planning, and agriculture commodity prediction.

## Output

Returns a forecast object containing weather prediction data for the requested coordinates, along with the coordinate metadata and a timestamp indicating when the data was scanned.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "latitude",
      "longitude"
     ],
     "properties": {
      "latitude": {
       "type": "string",
       "description": "Latitude coordinate (required)"
      },
      "longitude": {
       "type": "string",
       "description": "Longitude coordinate (required)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "forecast": {
       "type": "object"
      },
      "scanned_at": {
       "type": "number"
      },
      "coordinates": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/global-weather-forecast-by-coordinates-ea4298f4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.agentexchange.work](https://www.zero.xyz/host/store.agentexchange.work/llms.txt)
