# Check flood risk and planning overlays for Melbourne rentals

**Use case:** 

Runs Melbourne rental addresses through Vicmap Planning, the DEECA and Melbourne Water flood layers and the EPA contaminated-land registers. Each row says whether the parcel is inside a modelled 1%-AEP flood extent, which heritage, design and environmental overlays apply, and what active EPA sites sit nearby — with a source and status on every field so a blank never reads as "no risk".

## Input

```json
{
  "addresses": [
    "156 Bulleen Rd, Bulleen VIC 3105",
    "1-11 Swan St, Richmond VIC 3121",
    "10 Glenferrie Rd, Malvern VIC 3144",
    "619 Nepean Hwy, Carrum VIC 3197"
  ],
  "blocks": [
    "planning",
    "flood",
    "contaminatedLand"
  ],
  "nbn": true,
  "concurrency": 8
}
```

## Output

```json
{
  "input.address": {
    "label": "Input",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "address.formatted": {
    "label": "Matched address",
    "format": "string"
  },
  "address.state": {
    "label": "State",
    "format": "string"
  },
  "planning.data.zone.code": {
    "label": "Zone",
    "format": "string"
  },
  "flood.data.confidence": {
    "label": "Flood confidence",
    "format": "string"
  },
  "flood.data.modelled1pctAep.status": {
    "label": "1% AEP flood",
    "format": "string"
  },
  "connectivity.data.nbn.data.techType": {
    "label": "NBN",
    "format": "string"
  },
  "transport.data.station.name": {
    "label": "Nearest station",
    "format": "string"
  },
  "transport.data.station.distanceM": {
    "label": "Station (m)",
    "format": "number"
  },
  "schools.data.primary.data.name": {
    "label": "Primary school zone",
    "format": "string"
  },
  "demographics.data.sa1": {
    "label": "SA1",
    "format": "string"
  },
  "electorates.data.federal.data.name": {
    "label": "Federal division",
    "format": "string"
  },
  "electorates.data.stateLower.data.name": {
    "label": "State district",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [AU Address Enrichment — planning, flood, NBN, schools, SEIFA](https://apify.com/davidar/au-address-enrichment.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/davidar/au-address-enrichment.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/davidar/au-address-enrichment.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
