# Find school catchments and SEIFA scores for Brisbane addresses

**Use case:** 

Geocodes Brisbane addresses against the Queensland address layer and returns the designated state primary, year 7 and year 12 school catchments, the nearest train, bus and ferry stops with walking distance, and the ABS SA1 with its 2021 SEIFA indexes (IRSAD, IRSD, IER, IEO) as national deciles. Useful for comparing suburbs before buying or renting.

## Input

```json
{
  "addresses": [
    "36 Baroona Rd, Milton QLD 4064",
    "215 Daisy Hill Rd, Daisy Hill QLD 4127",
    "15 Bunya Park Dr, Eatons Hill QLD 4037",
    "107 Stanhill Dr, Surfers Paradise QLD 4217"
  ],
  "blocks": [
    "schools",
    "transport",
    "demographics"
  ],
  "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`).
