Call this when an agent needs current significant global disaster events — e.g
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.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://wailand.tailf99551.ts.net/v1/disaster-events
| Category | Everything else |
|---|---|
| Provider host | wailand.tailf99551.ts.net |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 5 from 5 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.005 | 1224 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"alert_level": "Red",
"current_only": true,
"event_type": "FL",
"iso3": "DEU"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"alert_level": {
"description": "GDACS alert level. Green is not carried.",
"enum": [
"Orange",
"Red"
],
"type": "string"
},
"current_only": {
"description": "true = only events still current.",
"type": "boolean"
},
"event_type": {
"description": "EQ earthquake, TC tropical cyclone, FL flood, VO volcano, DR drought, WF wildfire.",
"enum": [
"EQ",
"TC",
"FL",
"VO",
"DR",
"WF"
],
"type": "string"
},
"from_date_after": {
"description": "ISO date; only events beginning after it.",
"format": "date",
"type": "string"
},
"from_date_before": {
"description": "ISO date; only events beginning before it.",
"format": "date",
"type": "string"
},
"iso3": {
"description": "ISO3 country code; matches events affecting that country, e.g. 'DEU'.",
"type": "string"
},
"min_alert_score": {
"description": "Minimum GDACS alert score.",
"type": "number"
},
"source": {
"description": "Upstream feed; only 'gdacs' today.",
"enum": [
"gdacs"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}