# x402-factory Fire Weather Alerts

> x402-factory Fire Weather Alerts is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns active NWS fire weather alerts and model-based fire weather risk forecasts for a given US point or state

## Facts

- Endpoint: GET https://x402-factory.com/v1/alerts/fire-weather
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-fire-weather-alerts-8efdf8da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6Q7AQNR2U_ZhaBzeqphOW

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 x402-factory-fire-weather-alerts-8efdf8da
```

Example prompt: Are there any active fire weather alerts or red flag warnings near Los Angeles, CA — coordinates 34.05, -118.24 — and what's the model-based fire danger probability for the next few days?

## When to prefer this

Choose this endpoint when you specifically need fire weather hazard alerts (red flag warnings, fire weather watches, extreme fire danger) for a US point, with the added benefit of model-based probability forecasts layered alongside official NWS alerts. It is purpose-filtered to fire weather only, making it more efficient than a general severe weather alert endpoint when fire risk is the sole concern.

## Known failure modes

- Missing or invalid lat/lon returns an error or empty result set
- State code not matching two-letter format causes validation failure
- No active alerts for the queried area returns an empty 'active' array
- Location outside the US (NWS coverage area) may return no results
- Model risk data unavailable for remote or data-sparse regions
- Payment failure (402) if USDC balance is insufficient

## How this service works

Active and forecast fire weather risk (NWS + model) — Active NWS alerts filtered to fire weather hazards for any US point, with model-based risk context. Same shape as /v1/alerts/severe with the hazard class fixed to fire weather.

## Output

Returns a JSON object with two arrays: 'active' (list of current NWS fire weather alerts for the queried location, each with event name, severity, headline, onset/expiry timestamps, and NWS as source) and 'model_risk' (list of model-derived hazard forecasts, each with hazard type, time window start/end, and probability 0–1), plus a meta object with request context.

## 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",
     "required": [],
     "properties": {
      "lat": {
       "type": "number",
       "maximum": 90,
       "minimum": -90
      },
      "lon": {
       "type": "number",
       "maximum": 180,
       "minimum": -180
      },
      "state": {
       "type": "string",
       "pattern": "^[A-Za-z]{2}$",
       "maxLength": 2,
       "minLength": 2
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "active",
        "model_risk"
       ],
       "properties": {
        "active": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "event",
           "severity",
           "headline",
           "onset",
           "expires",
           "source"
          ],
          "properties": {
           "event": {
            "type": "string"
           },
           "onset": {
            "type": "string"
           },
           "source": {
            "type": "string",
            "const": "NWS"
           },
           "expires": {
            "type": "string"
           },
           "headline": {
            "type": "string"
           },
           "severity": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        },
        "model_risk": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "hazard",
           "window_start",
           "window_end",
           "probability"
          ],
          "properties": {
           "hazard": {
            "type": "string"
           },
           "window_end": {
            "type": "string"
           },
           "probability": {
            "type": "number",
            "maximum": 1,
            "minimum"
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-fire-weather-alerts-8efdf8da/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
