Open Government, ACT
Canberra's open data via a Socrata catalog API
The Australian Capital Territory's open-data platform, running on Socrata. Its discovery API lists datasets with their IDs, owners, and update times as JSON, and each dataset also carries its own SODA query endpoint. No key is needed to browse the catalog.
GET https://data.act.gov.au/api/catalog/v1?domains=data.act.gov.au&search_context=data.act.gov.au&limit=1
{
"results": [
{
"resource": {
"name": "Traffic speed camera locations",
"id": "426s-vdu4",
"type": "dataset",
"attribution": "Access Canberra",
"updatedAt": "2026-06-11T03:52:58.000Z"
}
}
]
}curl "https://data.act.gov.au/api/catalog/v1?domains=data.act.gov.au&search_context=data.act.gov.au&limit=1"const res = await fetch("https://data.act.gov.au/api/catalog/v1?domains=data.act.gov.au&search_context=data.act.gov.au&limit=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://data.act.gov.au/api/catalog/v1?domains=data.act.gov.au&search_context=data.act.gov.au&limit=1")
print(res.json())/api/catalog/v1?domains=data.act.gov.au&search_context=data.act.gov.au&limit=1PROBEDCanberra's open data via a Socrata catalog API
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
/api/search?q=testSearch by query parameters.
/api/catalog/v1?limit=5V1 — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Open Government, ACT: common questions
Is Open Government, ACT free to use?
Yes — Open Government, ACT is a free government API. Free tier: Free — app token optional (raises limits). Whether the free tier allows commercial use is unclear — check the provider docs.
Does Open Government, ACT need an API key?
No — Open Government, ACT needs no API key or signup. You can call it straight away; rate limits still apply (Throttled; higher limits with a free Socrata app token).
Can I call Open Government, ACT from the browser?
Yes — Open Government, ACT returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Open Government, ACT up right now?
As of our last scheduled check, Open Government, ACT is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.