# Macaroon Network US Weather Forecast & Alerts

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

Returns a live multi-day weather forecast and any active NWS weather alerts (severe thunderstorm, flood, winter storm, etc.) for a given US latitude/longitude coordinate

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/us-weather-forecast-alerts-v1
- Price: $0.002/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-us-weather-forecast-alerts-8e3c6554
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sq8il9oaG-ckAxVzATG4U

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-us-weather-forecast-alerts-8e3c6554 -d '<json body>'
```

Example prompt: What's the multi-day weather forecast and any active NWS alerts for latitude 40.7128, longitude -74.0060 right now?

## When to prefer this

Use this endpoint when you need live NWS-sourced weather forecasts and active alert data for a specific US point coordinate. It is the best choice when you need authoritative government weather data (not a third-party estimate), require both forecast and alert information in a single call, and the location is within the United States or its territories. Prefer this over general weather APIs when official NWS alert accuracy is important (e.g. safety-critical applications, emergency routing, outdoor events).

## Known failure modes

- Coordinates outside US territory, territories, or adjacent marine zones return no data (NWS has no global coverage)
- Invalid or malformed latitude/longitude values cause a request error
- NWS API upstream outage may cause timeouts or empty responses
- Coordinates in US waters far from land may return limited or no forecast data
- Missing required 'input' body fields returns a schema validation error

## How this service works

Live multi-day forecast and currently active weather alerts (severe thunderstorm, flood, winter storm, etc.) for a single latitude/longitude point, from the U.S. National Weather Service's own public API (api.weather.gov). Coverage is limited to the United States, its territories, and adjacent coastal/marine zones -- api.weather.gov has no data for points outside that area.

## Output

Returns the NWS multi-day forecast broken into forecast periods (day/night with temperatures, conditions, wind) and a list of currently active weather alerts (e.g. severe thunderstorm warning, flood watch, winter storm advisory) for the given lat/lon point, including alert titles, descriptions, and severity levels.

## 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-us-weather-forecast-alerts-8e3c6554/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)
