GET gtfs

Retrieve information for the active schedule.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

GtfsScheduleInfo object with information for the active schedule.

GtfsScheduleInfo
NameDescriptionTypeAdditional information
UpdatedDate

The date the GTFS cchedule data was last updated.

date

None.

EarliestServiceDate

The first date serviced by the current schedule

date

None.

LatestServiceDate

The last date seviced by the current schedule

date

None.

Response Formats

application/json, text/json

Sample:
{
  "UpdatedDate": "2024-04-19T11:46:37.8780304-07:00",
  "EarliestServiceDate": "2024-04-19T11:46:37.8780304-07:00",
  "LatestServiceDate": "2024-04-19T11:46:37.8780304-07:00"
}

text/html

Sample:
{"UpdatedDate":"2024-04-19T11:46:37.8780304-07:00","EarliestServiceDate":"2024-04-19T11:46:37.8780304-07:00","LatestServiceDate":"2024-04-19T11:46:37.8780304-07:00"}

application/xml, text/xml

Sample:
<GtfsScheduleInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ACTransit.Transit.Domain.Models">
  <EarliestServiceDate>2024-04-19T11:46:37.8780304-07:00</EarliestServiceDate>
  <LatestServiceDate>2024-04-19T11:46:37.8780304-07:00</LatestServiceDate>
  <UpdatedDate>2024-04-19T11:46:37.8780304-07:00</UpdatedDate>
</GtfsScheduleInfo>