Transport for Toronto, Canada
Toronto TTC stops and next-departure times as JSON
myTTC turns any Toronto Transit Commission station or stop into a tidy JSON feed of routes and upcoming departure times. Append .json to a stop's slug and you get schedules without signing up. Handy for building transit widgets around the TTC network.
GET https://myttc.ca/finch_station.json
{
"name": "Finch Station",
"uri": "finch_station",
"stops": [
{
"agency": "Toronto Transit Commission",
"uri": "finch_station_bishop_entrance",
"name": "Finch Station Bishop Entrance",
"routes": []
}
]
}curl "https://myttc.ca/finch_station.json"const res = await fetch("https://myttc.ca/finch_station.json");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://myttc.ca/finch_station.json")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/finch_station.jsonPROBEDToronto TTC stops and next-departure times as JSON
/finch_station.json?limit=5Paginated variant with limit parameter.
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.
Transport for Toronto, Canada: common questions
Is Transport for Toronto, Canada free to use?
Yes — Transport for Toronto, Canada is a free transport API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Transport for Toronto, Canada need an API key?
No — Transport for Toronto, Canada needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Transport for Toronto, Canada from the browser?
Not directly — Transport for Toronto, Canada 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 Transport for Toronto, Canada up right now?
As of our last scheduled check, Transport for Toronto, Canada is dying with 66.7% uptime over 90 days and a 801 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.