Send a postcode. EmergencyAPI maps it to the local government areas it covers, looks up each area against official declaration and DRFA data, and returns a top-level status plus a per-area breakdown with the official source link and dates for every record. Because a postcode can cross council boundaries, the response lists each matched area separately, and the top-level status can be partial when some areas are declared and others are not.
The status values:
- declared: every matched area has an active State or Territory natural-disaster declaration.
- partial: some matched areas are declared, others are not.
- not_declared: no active declaration or funding activation in any matched area.
- activation_only: Commonwealth DRFA funding is in force, but no state declaration record was found.
- uncertain: a record matches, but its current status could not be confirmed from published dates.
- unknown_postcode: the postcode is not recognised.
GET /api/v1/declarations/postcode/2480
{
"postcode": "2480",
"matchStatus": "declared",
"matchedLgas": [
{
"lgaName": "Lismore",
"lgaCode": "14850",
"populationShare": 0.94,
"declarationStatus": "declared",
"declarations": [
{
"agrn": "1012",
"title": "NSW Severe Weather and Flooding",
"instrumentType": "state_natural_disaster_declaration",
"jurisdiction": "NSW",
"disasterTypes": ["flood", "storm"],
"startDate": "2026-03-01",
"endDate": null,
"status": "active",
"currencyConfidence": "high",
"basis": "Open NSW declaration within the recency horizon",
"source": "NSW Spatial Services, Total Natural Disaster Declarations by LGA",
"sources": ["NSW Spatial Services...", "DisasterAssist"],
"sourceUrl": "https://www.nsw.gov.au/...",
"sourcePublishedAt": "2026-03-02"
}
]
}
],
"asAt": "2026-06-22",
"disclaimer": "EmergencyAPI reports the declaration and funding activation status ..."
}