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.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
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.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
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?
Transport for Toronto, Canada is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.