# ForgeMesh Tornado Warning & Watch Feed

> ForgeMesh Tornado Warning & Watch Feed is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-15).

Returns every currently active US tornado warning and tornado watch as normalized JSON, including affected zones, severity, urgency, and full alert text, refreshed every 2 minutes.

## Facts

- Endpoint: POST https://x402.forgemesh.io/tornado-warning-feed
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-tornado-warning-watch-feed-f675428b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JCO6S-4LKuo9zdFLmPnVO

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-tornado-warning-watch-feed-f675428b -d '<json body>'
```

Example prompt: Pull the current tornado warning and watch feed right now — I need all active US tornado alerts with their affected zones, severity, and urgency so I can decide whether to halt our delivery operations.

## When to prefer this

Choose this endpoint when you need a continuously refreshed, normalized JSON snapshot of all active US tornado warnings and watches without parsing raw NWS CAP/ATOM feeds yourself. Ideal for safety-notification bots, logistics-halt triggers, or emergency dashboards that need sub-2-minute latency on tornado activity nationwide. Prefer over weather APIs that bundle tornado data inside broader severe-weather feeds when you specifically need tornado-only signal with structured zone and severity metadata.

## Known failure modes

- No active alerts: returns empty list or zero-record response when no tornadoes are currently warned or watched
- Upstream NWS feed delay: data may lag up to 2 minutes behind NWS issuance
- Payment failure: 402 response if USDC payment is not attached or insufficient
- Service unavailable: 5xx if forgemesh ingest pipeline is down
- Malformed body: 400 if POST body structure does not match expected schema

## How this service works

Nationwide tornado warning and watch feed: every currently active US tornado warning or tornado watch — affected zones, severity, urgency, and full alert text — as normalized JSON, refreshed every 2 minutes. Built for safety-notification and logistics-halt agents that need the fastest possible signal on tornado activity.

## Output

A normalized JSON object listing every currently active US tornado warning and tornado watch, including the affected geographic zones, severity classification, urgency level, and full NWS alert text. Data is refreshed every 2 minutes so callers get near-real-time situational awareness.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "type": "FeatureCollection",
   "features": [
    {
     "properties": {
      "event": "Tornado Warning",
      "areaDesc": "Central Oklahoma County, OK",
      "severity": "Extreme"
     }
    }
   ]
  },
  "attribution": "US National Weather Service (public domain)"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-tornado-warning-watch-feed-f675428b/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)
