# Check NBN technology and fibre upgrade eligibility in NSW

**Use case:** 

Looks up each NSW address in nbn co's address service and reports the current technology (FTTP, FTTC, FTTN, HFC, fixed wireless), the service status and whether the premises is eligible for the free fibre upgrade — plus the nearest licensed Telstra, Optus and TPG mobile sites from the ACMA register. Unit addresses are matched as given, with a note when only the block could be resolved.

## Input

```json
{
  "addresses": [
    "31 Marrickville Rd, Marrickville NSW 2204",
    "25-35 Parramatta Rd, Haberfield NSW 2045",
    "10 The Terrace, Windsor NSW 2756",
    "2/293 Katoomba St, Katoomba NSW 2780"
  ],
  "blocks": [
    "connectivity"
  ],
  "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`).
