# NWS Active Weather Alerts by Coordinate

> NWS Active Weather Alerts by Coordinate is a paid API for AI agents from mcpfax-utility.bowling-anthony.workers.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Returns active National Weather Service watches, warnings, and advisories for a given US latitude/longitude coordinate.

## Facts

- Endpoint: GET https://mcpfax-utility.bowling-anthony.workers.dev/v1/weather-alerts
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nws-active-weather-alerts-by-coordinate-20ad49ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JarO9cdQXuBqkg2TvQGm4

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 nws-active-weather-alerts-by-coordinate-20ad49ea
```

Example prompt: Are there any active NWS weather watches or warnings right now for coordinates 35.4676° N, 97.5164° W near Oklahoma City?

## When to prefer this

Use this endpoint when you need real-time, official NWS active alert data (watches, warnings, advisories) keyed to a specific US geographic coordinate. Prefer this over general weather forecast endpoints when the user's need is specifically about hazardous conditions, emergency preparedness, or safety-critical decisions rather than routine forecasts.

## Known failure modes

- Non-US coordinates return no results or an error since NWS only covers US territory
- Coordinates in areas with no active alerts return an empty alerts list
- Malformed or out-of-range latitude/longitude values result in a validation error
- Transient NWS API outages may cause upstream fetch failures

## How this service works

Active weather alerts — Active NWS watches/warnings for a US coordinate.

## Output

Returns a list of active NWS weather alerts for the given US coordinate, including event type (e.g. Tornado Watch, Flash Flood Warning), severity level, affected zone or area description, issuance time, expiration time, and the full alert headline/description text.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   },
   "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/nws-active-weather-alerts-by-coordinate-20ad49ea/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcpfax-utility.bowling-anthony.workers.dev](https://www.zero.xyz/host/mcpfax-utility.bowling-anthony.workers.dev/llms.txt)
