# wAILand Disaster Signals

> wAILand Disaster Signals is a paid API for AI agents from wailand.tailf99551.ts.net, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns all currently active significant global disaster alerts (Orange/Red) from GDACS, covering earthquakes, cyclones, floods, volcanoes, droughts, and wildfires, filterable by country, event type, and alert level.

## Facts

- Endpoint: GET https://wailand.tailf99551.ts.net/v1/disaster-events
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wailand-disaster-signals-bbd73659
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ddhKBrw9jkIfpYs1hHyWl

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 wailand-disaster-signals-bbd73659
```

Example prompt: Pull all active GDACS Orange and Red disaster alerts right now — I want to check for any floods or earthquakes affecting Brazil (BRA) so I can assess logistics exposure before routing our shipments.

## When to prefer this

Use this endpoint when an AI agent needs a comprehensive, normalized snapshot of all currently significant global disaster events across multiple hazard types from a single call. Prefer this over direct GDACS API access when you need filtered, pre-normalized data with consistent schema. Best suited for logistics routing, risk assessment, insurance exposure analysis, or operational monitoring workflows where near-real-time (up to 24h) data is acceptable. Not suitable for life-safety or emergency response use cases requiring true real-time alerts.

## Known failure modes

- Invalid ISO3 country code returns no results or validation error
- Unsupported event_type or alert_level enum value returns a 400 error
- Data may be up to 24 hours stale — real-time emergencies not guaranteed to be present
- No events match the filters — returns an empty result set, not an error
- Service unavailable if upstream GDACS feed is delayed or unreachable

## How this service works

Call this when an agent needs current significant global disaster events — e.g. before routing logistics or assessing exposure. Returns ALL matching normalized GDACS multi-hazard alerts (earthquake, cyclone, flood, volcano, drought, wildfire); one call returns the whole active set (~55-76 Orange/Red events/year). Refreshed daily 06:30 UTC (up to 24h old); not for life-safety use. Filters: source, event_type, alert_level, min_alert_score, iso3, current_only, from_date_after, from_date_before.

## Output

A normalized set of all active GDACS multi-hazard disaster events matching the specified filters, including event type, alert level, alert score, affected country (ISO3), and event start date. Data is refreshed daily at 06:30 UTC and may be up to 24 hours old. Typically covers ~55–76 Orange/Red events per year in the active set.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "iso3": {
       "type": "string",
       "description": "ISO3 country code; matches events affecting that country, e.g. 'DEU'."
      },
      "source": {
       "enum": [
        "gdacs"
       ],
       "type": "string",
       "description": "Upstream feed; only 'gdacs' today."
      },
      "event_type": {
       "enum": [
        "EQ",
        "TC",
        "FL",
        "VO",
        "DR",
        "WF"
       ],
       "type": "string",
       "description": "EQ earthquake, TC tropical cyclone, FL flood, VO volcano, DR drought, WF wildfire."
      },
      "alert_level": {
       "enum": [
        "Orange",
        "Red"
       ],
       "type": "string",
       "description": "GDACS alert level. Green is not carried."
      },
      "current_only": {
       "type": "boolean",
       "description": "true = only events still current."
      },
      "from_date_after": {
       "type": "string",
       "format": "date",
       "description": "ISO date; only events beginning after it."
      },
      "min_alert_score": {
       "type": "number",
       "description": "Minimum GDACS alert score."
      },
      "from_date_before": {
       "type": "string",
       "format": "date",
       "description": "ISO date; only events beginning before it."
      }
     }
    }
   },
   "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/wailand-disaster-signals-bbd73659/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wailand.tailf99551.ts.net](https://www.zero.xyz/host/wailand.tailf99551.ts.net/llms.txt)
