Get the renewable share of the NEM

Percent of dispatched generation from wind, solar, hydro, and batteries.

Steps

  1. 1Call the endpoint.
  2. 2Read renewable_pct.

Code

cURL
curl https://api.ausdata.io/v1/energy/renewable-share \
  -H "Authorization: Bearer YOUR_KEY"
Python
import requests
r = requests.get(
    "https://api.ausdata.io/v1/energy/renewable-share",
    headers={"Authorization": "Bearer YOUR_KEY"},
)
print(r.json())
JavaScript
const r = await fetch("https://api.ausdata.io/v1/energy/renewable-share", {
  headers: { Authorization: "Bearer YOUR_KEY" },
});
console.log(await r.json());

Watch out for

  • The figure is the instantaneous share, not annualised.

Related

Try it now

500 free calls per month. No credit card.

Get a free API key