# HazardPulse Natural Disaster Alert Signal

> HazardPulse Natural Disaster Alert Signal is a paid API for AI agents from hazard.lonestaroracle.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a global or country-scoped natural hazard stress signal with alert level, score, and active disaster events from GDACS and USGS feeds

## Facts

- Endpoint: GET https://hazard.lonestaroracle.xyz/hazard
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/hazardpulse-natural-disaster-alert-signal-56338a2b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lGSu-xF080KIoRIS79Ttg

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 hazardpulse-natural-disaster-alert-signal-56338a2b
```

Example prompt: What's the current natural hazard risk level for Japan — are there any active red or orange disaster alerts like earthquakes, floods, or typhoons I should know about?

## When to prefer this

Use HazardPulse when you need a ready-to-use, aggregated natural disaster risk signal from authoritative official feeds (GDACS + USGS) without building your own feed parser. Ideal for risk, insurance, logistics, or supply-chain agents that need a simple pay-per-call hazard check at the country or global level. Prefer this over raw GDACS or USGS APIs when you want a pre-scored, normalized alert level rather than raw event lists.

## Known failure modes

- Invalid or unrecognized country name returns an error or falls back to global scope
- GDACS or USGS feed outage may result in stale or incomplete data
- Rate limiting or payment failure via x402 returns a 402 Payment Required response
- Passing an unsupported HTTP method returns an error (only GET/HEAD/DELETE accepted)
- Highly granular sub-national queries not supported — country level only

## How this service works

Global (or per-country) natural-hazard / disaster alert signal (optional ?country=)

## Output

Returns a structured hazard signal object including: a named hazard level (CALM / ACTIVE / ELEVATED / SEVERE), a 0–10 alert score, counts of active Red/Orange/Green GDACS alerts, a breakdown of active events by hazard type (earthquake, flood, wildfire, tropical cyclone, volcano, drought), a list of the most significant named events with country, date, alert level, and source, plus the geographic scope (global or specific country).

## Request schema (JSON Schema)

```json
{
 "name": "HazardPulse",
 "tags": [
  "hazard",
  "disaster",
  "natural-disaster",
  "earthquake",
  "risk"
 ],
 "type": "object",
 "version": "1.0.0",
 "category": "risk",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "country": {
       "type": "string",
       "example": "Japan",
       "description": "Optional. Scope to a country (name or ISO/keyword, e.g. Japan, Philippines). Omit for the global hazard signal. Aliases: nation, q, iso."
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "scope": "global",
     "events": [
      {
       "date": "2026-08-05",
       "name": "Flood in China",
       "type": "Flood",
       "alert": "Red",
       "source": "GDACS",
       "country": "China"
      },
      {
       "date": "2026-08-06",
       "name": "DOLPHIN-26",
       "type": "Tropical Cyclone",
       "alert": "Orange",
       "source": "GDACS",
       "country": "Japan, China"
      }
     ],
     "source": "GDACS + USGS Earthquake Hazards",
     "by_type": {
      "Flood": 8,
      "Wildfire": 74,
      "Earthquake": 55,
      "Tropical Cyclone": 3
     },
     "max_score": 10,
     "alert_score": 6,
     "hazard_level": "ELEVATED",
     "active_alerts": {
      "red": 1,
      "green": 98,
      "orange": 1
     }
    }
   }
  }
 },
 "description": "Global natural-hazard / disaster alerting made agent-callable. One x402 call returns a hazard-stress signal (CALM / ACTIVE / ELEVATED / SEVERE with a 0-10 score) — globally or for a specific country — built from the official multi-hazard alert feeds: GDACS (Global Disaster Alert & Coordination System) Red/Orange/Green levels across earthquake, tropical cyclone, flood, volcano, wildfire and drought, plus USGS earthquakes. Returns the count of active Red/Orange alerts, the biggest current events named with country and alert level, a breakdown by hazard type, and a plain-language read. The physical-disaster leg a risk, insurance, supply-chain or logistics agent needs, served pay-per-call. Pass ?country= to scope it. $0.05 in USDC on 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/hazardpulse-natural-disaster-alert-signal-56338a2b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from hazard.lonestaroracle.xyz](https://www.zero.xyz/host/hazard.lonestaroracle.xyz/llms.txt)
