List all current incidents
list_incidentsReturns a GeoJSON FeatureCollection of all current emergency incidents, with support for filtering, pagination, and bounding box queries.
Example response: { "type": "FeatureCollection", "features": [ { "type": "Feature", "id": "nsw-rfs-1234567", "geometry": { "type": "Point", "coordinates": [ 150.604, -33.883 ] }, "properties": { "source": { "state": "nsw", "agency": "RFS", "feedId": "1234567" }, "title": "Bush Fire - Warragamba", "eventType": "bushfire", "status": "active", "warningLevel": "watch_and_act", "severity": "Severe", "urgency": "Expected", "certainty": "Observed", "location": { "address": "Warragamba Dam Rd, Warragamba NSW", "suburb": "Warragamba", "state": "NSW", "latitude": -33.883, "longitude": 150.604 }, "details": { "description": "Bush fire burning in a south-easterly direction" }, "timestamps": { "reported": "2026-04-07T14:30:00+10:00", "updated": "2026-04-07T16:45:00+10:00", "fetched": "2026-04-07T16:46:12+10:00" }, "retraction": { "retracted": true, "retractedAt": "2026 ... (truncated)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bbox | No | Bounding box: minLon,minLat,maxLon,maxLat | |
| after | No | Alias for cursor. This is the parameter name emitted in links.next, and is accepted for backward compatibility. If both are supplied, after wins. | |
| limit | No | Results per page (default 100, max 500) | |
| state | No | Comma-separated state codes (e.g. nsw,vic,qld) | |
| agency | No | Source agency filter | |
| cursor | No | Opaque pagination cursor, taken from meta.next_cursor of the previous response. Absent next_cursor means there are no further pages. | |
| status | No | Incident status filter | |
| urgency | No | CAP-AU urgency levels (Immediate, Expected, Future, Past, Unknown) | |
| category | No | Comma-separated event categories. Groups related event types (e.g. fire includes bushfire, structure_fire, grass_fire, vehicle_fire). burn_off is its own category (planned). See /api/v1/schema for the full mapping. | |
| severity | No | CAP-AU severity levels (Extreme, Severe, Moderate, Minor, Unknown) | |
| certainty | No | CAP-AU certainty levels (Observed, Likely, Possible, Unlikely, Unknown) | |
| eventType | No | Comma-separated event types (bushfire, burn_off, fire_ban, structure_fire, vehicle_fire, grass_fire, hazmat, rescue, flood, storm, tree_down, cyclone, earthquake, extreme_heat, vehicle_accident, medical, alarm, other) | |
| featureType | No | Comma-separated feature types. Defaults to 'incident' (point incidents only), so boundary polygons never appear unless requested. Request them explicitly: incident_area, warning_area, fire_ban_area. See /api/v1/schema. | |
| warningLevel | No | Australian Warning System levels | |
| include_retracted | No | Include retracted incidents (default false). Retracted incidents are marked when upstream feeds stop publishing them. |