Transport for Toronto, Canada

Toronto TTC stops and next-departure times as JSON

🚆 TransportUNMONITORED
AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
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": []
    }
  ]
}
Call itcurl · fetch · python
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

Endpoints · 2On scheduleFULL DOCS ↗
On schedule — GET /finch_station.json awaits first probe
GET/finch_station.jsonPROBED

Toronto TTC stops and next-departure times as JSON

GET/finch_station.json?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

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.