# ForgeMesh Storm Watch Alerts

> ForgeMesh Storm Watch Alerts is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns active storm watches, warnings, and advisories for a given US state, including severity, urgency, affected zones, and full alert text.

## Facts

- Endpoint: POST https://x402.forgemesh.io/storm-watch-alerts
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-storm-watch-alerts-7a7005af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J1KCcB0yCB-WsRtJbh-SX

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 forgemesh-storm-watch-alerts-7a7005af -d '<json body>'
```

Example prompt: Are there any active storm watches, warnings, or advisories in Texas right now? I need the severity and affected zones so I can decide whether to delay our shipments.

## When to prefer this

Use this endpoint when you need real-time, state-level storm watch and warning data for the United States with structured severity and zone information, especially for automating safety notifications, delivery-delay logic, or emergency response workflows. Prefer this over general weather forecast APIs when you specifically need official NWS alert status rather than forecast conditions.

## Known failure modes

- Invalid or unrecognized state code returns an error or empty result
- No active alerts for the state returns an empty list
- Payment failure (insufficient USDC balance) results in a 402 response
- Service unavailability during NWS data refresh cycle may return stale or incomplete data
- Non-US states or territories may not be supported

## How this service works

Active storm watches, warnings, and advisories issued for any US state, including severity, urgency level, affected zones, and full alert text. Use it to trigger automated safety notifications or delivery-delay logic ahead of severe weather. Covers the United States only; alert data refreshes every 5 minutes.

## Output

A list of currently active storm watches, warnings, and advisories for the requested US state, each with severity level, urgency classification, affected geographic zones, and the full official alert text from the National Weather Service. Data is refreshed every 5 minutes.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "state": {
   "type": "string",
   "description": "Two-letter US state code, e.g. TX"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "features": [
    {
     "properties": {
      "event": "Heat Advisory",
      "severity": "Minor"
     }
    }
   ]
  },
  "attribution": "US National Weather Service (public domain)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-storm-watch-alerts-7a7005af/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
