City, Toronto Open Data

Toronto's open data catalog via a standard CKAN API

🏛 GovernmentUNMONITOREDchecked 1h ago
AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

The City of Toronto publishes its open data through a standard CKAN backend. This endpoint lists every dataset package by id; from there you can pull each package's metadata and downloadable resources. Keyless JSON, though it didn't advertise CORS headers.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://ckan0.cf.opendata.inter.prod-toronto.ca/api/3/action/package_list

{
  "help": "https://ckan0.cf.opendata.inter.prod-toronto.ca/api/3/action/help_show?name=package_list",
  "success": true,
  "result": [
    "10-year-cycling-network-plan-on-street-2016",
    "2013-street-needs-assessment-results"
  ]
}
Call itcurl · fetch · python
curl "https://ckan0.cf.opendata.inter.prod-toronto.ca/api/3/action/package_list"
const res = await fetch("https://ckan0.cf.opendata.inter.prod-toronto.ca/api/3/action/package_list");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://ckan0.cf.opendata.inter.prod-toronto.ca/api/3/action/package_list")
print(res.json())

BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET

Endpoints · 2On scheduleFULL DOCS ↗
First rollup pending — GET /package_list has been probed
GET/package_listPROBED

Toronto's open data catalog via a standard CKAN API

GET/package_list?limit=5

Paginated variant with limit parameter.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

City, Toronto Open Data: common questions

Is City, Toronto Open Data free to use?

Yes — City, Toronto Open Data is a free government API. Free tier: Free — no key required (CKAN). Whether the free tier allows commercial use is unclear — check the provider docs.

Does City, Toronto Open Data need an API key?

No — City, Toronto Open Data needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).

Can I call City, Toronto Open Data from the browser?

Not directly — City, Toronto Open Data doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.

Is City, Toronto Open Data up right now?

As of our last scheduled check, City, Toronto Open Data is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.