# ForgeMesh Active Tornado Alerts

> ForgeMesh Active Tornado Alerts 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 all currently active tornado warnings and watches across the United States, including affected counties/zones, severity, urgency, and full official alert text.

## Facts

- Endpoint: POST https://x402.forgemesh.io/active-tornado-alerts
- 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-active-tornado-alerts-edab16df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3NX3N3azyx5C1UGt8Z_Kb

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-active-tornado-alerts-edab16df -d '<json body>'
```

Example prompt: Pull all tornado warnings and watches currently active anywhere in the US — I need the affected counties, severity, urgency, and the full official alert text for each one.

## When to prefer this

Use this endpoint when you need real-time, authoritative US tornado alert data sourced directly from the official government feed. Prefer this over general weather APIs when you specifically need tornado warning/watch status with county-level granularity and full official alert text — ideal for emergency notification agents, logistics rerouting based on severe weather, outdoor event safety checks, or any workflow that needs to act on tornado activity.

## Known failure modes

- No active tornado alerts (legitimately empty response — not an error)
- Payment failure due to insufficient USDC balance
- Network timeout if NWS feed is temporarily unavailable
- Stale data if upstream government feed is delayed

## How this service works

All tornado warnings and tornado watches currently in effect anywhere in the United States, with the specific counties/zones affected, severity, urgency, and the full official US government alert feed alert text. For emergency-notification agents, logistics rerouting, and outdoor-event safety logic. Legitimately empty when no tornado activity is occurring.

## Output

A list of all currently active tornado warnings and tornado watches in the US, each with the specific counties or zones affected, severity and urgency classifications, and the complete official NWS alert text. Returns an empty list when no tornado activity is occurring.

## 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-active-tornado-alerts-edab16df/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)
