# ForgeMesh Severe Weather Warnings by State

> ForgeMesh Severe Weather Warnings by State 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 all active severe weather warnings, watches, and advisories for a given US state as normalized JSON, refreshed every 5 minutes.

## Facts

- Endpoint: POST https://x402.forgemesh.io/severe-weather-warnings
- 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-severe-weather-warnings-by-state-fa811865
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yN8KpuGLp_qgBoeyLvZrV

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-severe-weather-warnings-by-state-fa811865 -d '<json body>'
```

Example prompt: Pull all active severe weather warnings, watches, and advisories for Texas right now — I need to know the event types, severity, and which zones are affected so I can decide whether to reroute our delivery trucks.

## When to prefer this

Use this endpoint when you need a comprehensive, state-scoped view of all active NWS severe weather alerts in normalized JSON format — ideal for logistics automation, outdoor event cancellation triggers, or safety notification pipelines that need structured data rather than raw NWS XML feeds. Prefer over generic weather APIs when you need official warning/watch/advisory classifications and zone-level detail for the entire state in a single call.

## Known failure modes

- Invalid or unrecognized state code returns an error response
- No active alerts for the given state returns an empty list or null result
- Payment failure (insufficient USDC balance or x402 protocol error) blocks the request
- Upstream NWS data delay may cause alerts to lag by up to 5 minutes
- US territories or non-state codes (e.g. DC, PR) may not be supported

## How this service works

All currently active severe weather warnings, watches, and advisories for a given US state — event type, severity, urgency, the specific zones affected, and the full alert text — as normalized JSON. Built for logistics rerouting, outdoor-event cancellation logic, and safety-notification agents. US coverage only, refreshed every 5 minutes.

## Output

A normalized JSON response listing every currently active severe weather warning, watch, or advisory for the specified US state, including event type (e.g. Tornado Warning, Winter Storm Watch), severity, urgency, the specific geographic zones affected, and the full official alert text from the National Weather Service.

## 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-severe-weather-warnings-by-state-fa811865/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)
