Is Tube data currently available?

I’m testing several endpoints and no data is being returned for three days now. Error message: no response from server.

https://api.tfl.gov.uk/swagger/ui/index.html?url=/swagger/docs/v1#!/Line/Line_MetaModes

Thank you in advance.

Last time I checked I was able to retrieve all tube lines and their respective stopPointSequences. What specifically are you looking for?

1 Like

@SachinK,

I’m building a Tube schedule app. I want to test the endpoint above and other endpoints as well. I’ve been doing it for the past three weeks. I don’t even have to enter the API key or App Id on the site. I have both(will incorporate them later in a URL).

There was an outage on Dec. 6 but it was fixed in a couple of days. Now, the content is empty.

Working OK for me …

curl -s 'https://api.tfl.gov.uk/Line/Meta/Modes' | json_pp
[
   {
      "isFarePaying" : true,
      "isScheduledService" : true,
      "isTflService" : true,
      "modeName" : "bus",
      "$type" : "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities"
   },
   {
      "modeName" : "cable-car",
      "isScheduledService" : true,
      "isFarePaying" : true,
      "isTflService" : true,
      "$type" : "Tfl.Api.Presentation.Entities.Mode, Tfl.Api.Presentation.Entities"
   },

etc.

1 Like

@ottaky

I already figured it out. The swagger is down but all the endpoints are still available. Thank you for the reply.