We keep a database of pretty much every NBN, 5G home internet and wireless plan we can find in Australia, and we update it most weeks. People kept asking if they could use that data, so we have opened it up. There is now a free JSON API that gives you the lot.
If you are building a comparison tool, a savings calculator, a spreadsheet, a uni project, or you just want current Australian broadband pricing to play with, you can pull it straight from us. No sign up, no API key.
What is in it
The API returns every active plan we track. For each plan you get the provider, the access technology (NBN, 5G, wireless or satellite), the typical evening speed in Mbps, the monthly price, any intro pricing, the data allowance, the contract length and the setup fee. There is a link back to our review page for each provider too, so you can pull ratings into whatever you are building.
How to use it
It is a single GET request that returns JSON:
GET https://www.ozbroadbandreview.com/api/plans.php
That returns all of them. You can narrow it down with a few optional query parameters:
?technology=NBNfor a single access type?provider=aussiebroadbandfor one provider?max_price=70to cap the monthly price?min_speed=100for a minimum speed
So the cheapest NBN plans under $70 a month is just this:
curl "https://www.ozbroadbandreview.com/api/plans.php?technology=NBN&max_price=70"
The deal
It is free. All we ask is that you show a visible, do-follow link back to ozbroadbandreview.com wherever the data appears. That is the whole arrangement. The response even hands you the attribution text and link so you do not have to write it yourself. There is a light rate limit of 300 requests an hour per IP, which is plenty, since the whole dataset comes back in a single call. Cache it your end and you will basically never hit the limit.
One honest warning
We check and update this data roughly weekly, but plans and prices change constantly and mistakes happen. Treat it as a very good starting point, not gospel. Anyone actually signing up to a plan should confirm the details with the provider first. The data comes with no warranty.
Where to start
The full docs, with sample queries and ready to copy code in cURL, JavaScript, Python and PHP, are on the plans API page. If you would rather just look at the data than build with it, the same plans are in a sortable table over at all plans.
If you build something with it, we would genuinely love to see it.





