# Macaroon Network WeatherNext Point Forecast

> Macaroon Network WeatherNext Point Forecast is a paid API for AI agents from api.macaroonnetwork.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns point-location weather forecast or reanalysis data from Google DeepMind's WeatherNext model (via Earth Engine) for a specific geographic coordinate, using only data at least 1 hour old under CC BY 4.0 license.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/weathernext-point-forecast-v1
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macaroon-network-weathernext-point-forecast-9beb0744
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_P_u7ugOdpQuNRnPH01Ydj

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 macaroon-network-weathernext-point-forecast-9beb0744 -d '<json body>'
```

Example prompt: Can you pull the WeatherNext point forecast for coordinates 37.7749°N, 122.4194°W — I need the most recent commercially-licensed atmospheric data available for that location.

## When to prefer this

Choose this endpoint when you need point-location weather data from Google DeepMind's WeatherNext AI model that is explicitly CC BY 4.0 licensed and commercially reusable. It is ideal for applications requiring AI-generated weather forecasts or reanalysis at specific GPS coordinates without the legal restrictions of real-time weather APIs. Prefer this over standard weather APIs when you need the WeatherNext model specifically or require a clear commercial license for the data.

## Known failure modes

- Invalid or missing coordinates result in a bad request error
- Request for data less than 1 hour old is rejected to maintain license compliance
- Earth Engine backend unavailability causes service errors
- Malformed JSON body returns schema validation errors
- Payment failure via x402 protocol blocks the request

## How this service works

Point-location weather forecast/reanalysis lookup from Google DeepMind's WeatherNext model via Earth Engine. Every request is bounded to data at least 1 hour old -- the exact license boundary at which WeatherNext data becomes CC BY 4.0 and commercially reusable. This listing never serves data still under the real-time Terms of Use, which explicitly prohibits commercial resale.

## Output

Returns structured meteorological data (forecast or reanalysis) from the WeatherNext model for the queried geographic point, including atmospheric variables such as temperature, wind, and pressure. Data is always at least 1 hour old to comply with CC BY 4.0 licensing, making it suitable for commercial use.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macaroon-network-weathernext-point-forecast-9beb0744/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.macaroonnetwork.com](https://www.zero.xyz/host/api.macaroonnetwork.com/llms.txt)
