Returns a simplified list of recent disaster events formatted for display in a table. Includes basic event information, alert levels, and links to detailed reports.
Parameters (3)
eventlist(string, query, optional)
Comma-separated list of event types to include (EQ=Earthquake, TC=Tropical Cyclone, FL=Flood, VO=Volcano, DR=Drought, WF=Wildfire)
fromDate(string, query, optional)
Start date for event filtering (ISO 8601 format)
toDate(string, query, optional)
End date for event filtering (ISO 8601 format)
Examples (2)
Get disaster events for homepage tableopenapi-spec
import zingu_apis
api = zingu_apis.api("gdacs")
result = api.fetch("gdacsapi/api/events/geteventlist/homepagetable", fromDate="2025-01-01", toDate="2025-12-31", eventlist="EQ,TC,FL")
for item in result:
print(item)
const resp = await fetch("https://www.gdacs.org/gdacsapi/api/events/geteventlist/homepagetable?fromDate=2025-01-01&toDate=2025-12-31&eventlist=EQ%2CTC%2CFL");
const data = await resp.json();